blob: 5332e7dbb24d046b082e9d438d288cc61c057fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ bionix }:
with bionix;
input:
stage {
name = "bzip2";
buildInputs = with pkgs; [ bzip2 ];
buildCommand = "bzip2 < ${input} > $out";
passthru.filetype = filetype.bz2 input.filetype;
}
|