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