mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
also add gzip. Hmmm, does this add a circular dependency?
svn path=/nixpkgs/trunk/; revision=1552
This commit is contained in:
parent
58bbec4a6e
commit
decf75a3d8
5
pkgs/stdenv/nix-linux-static/gzip-static/builder.sh
Normal file
5
pkgs/stdenv/nix-linux-static/gzip-static/builder.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
. $stdenv/setup
|
||||
|
||||
tar zxvf $src
|
||||
mkdir $out
|
||||
cp -a gzip-1.3.3/* $out
|
7
pkgs/stdenv/nix-linux-static/gzip-static/default.nix
Normal file
7
pkgs/stdenv/nix-linux-static/gzip-static/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{stdenv}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gzip-static-1.3.3";
|
||||
builder = ./builder.sh;
|
||||
src = ./gzip-1.3.3-static.tar.gz;
|
||||
}
|
Binary file not shown.
Loading…
Reference in a new issue