* stdenv-nix-linux should more-or-less work again now.

svn path=/nixpkgs/trunk/; revision=826
This commit is contained in:
Eelco Dolstra
2004-03-09 17:16:02 +00:00
parent ab73ec398b
commit a1b3ae0c81
19 changed files with 79 additions and 90 deletions
@@ -1,4 +1,6 @@
{stdenv, fetchurl}: derivation {
{stdenv, fetchurl, enforcePurity ? true}:
derivation {
name = "binutils-2.14";
system = stdenv.system;
builder = ./builder.sh;
@@ -6,6 +8,5 @@
url = ftp://ftp.nluug.nl/pub/gnu/binutils/binutils-2.14.tar.bz2;
md5 = "2da8def15d28af3ec6af0982709ae90a";
};
stdenv = stdenv;
noSysDirs = stdenv.noSysDirs;
inherit stdenv enforcePurity;
}