aboutsummaryrefslogtreecommitdiff
path: root/tools/compression-bunzip2.nix
blob: 06fe6822d9f3ea8ae5e3aeb623dd9c684bcc7c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{bionix}:

with bionix;

input:

stage {
  name = "bunzip2";
  buildInputs = with pkgs; [ bzip2 ];
  buildCommand = "bunzip2 < ${input} > $out";
  passthru.filetype = types.bunzip2 input;
}