1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

add static version for initial stdenv

svn path=/nixpkgs/trunk/; revision=4444
This commit is contained in:
Armijn Hemel 2005-12-27 02:50:48 +00:00
parent cecd284522
commit abcfd1bce5

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, dietgcc}:
stdenv.mkDerivation {
name = "gzip-1.3.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/gzip-1.3.3.tar.gz;
md5 = "52eaf713673507d21f7abefee98ba662";
};
NIX_GCC=dietgcc;
}