blob: a36b66d19b3ae7bcd8fdc52862e23d09de187775 (
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;
}
|