2004-03-11 17:26:14 +00:00
|
|
|
{stdenv, fetchurl, noSysDirs}:
|
2004-03-09 17:16:02 +00:00
|
|
|
|
2004-03-29 17:23:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2004-09-18 17:09:17 +00:00
|
|
|
name = "binutils-2.15";
|
2003-11-03 10:22:00 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
src = fetchurl {
|
2005-02-15 14:44:19 +00:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/binutils-2.15.tar.bz2;
|
2004-09-18 17:09:17 +00:00
|
|
|
md5 = "624e6b74983ac6b2960edaf2d522ca58";
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2004-09-18 17:09:17 +00:00
|
|
|
patches = [./no-lex.patch];
|
2004-03-29 17:23:01 +00:00
|
|
|
inherit noSysDirs;
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|