add Nix expression for 2.17

svn path=/nixpkgs/trunk/; revision=5534
This commit is contained in:
Armijn Hemel 2006-06-28 22:42:51 +00:00
parent 0891c55730
commit 18a9eb7df6

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, noSysDirs}:
stdenv.mkDerivation {
name = "binutils-2.17";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/binutils/binutils-2.17.tar.bz2;
md5 = "e26e2e06b6e4bf3acf1dc8688a94c0d1";
};
inherit noSysDirs;
}