2004-03-11 18:26:14 +01:00
|
|
|
{stdenv, fetchurl, noSysDirs}:
|
2004-03-09 18:16:02 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-09-18 19:09:17 +02:00
|
|
|
name = "binutils-2.15";
|
2003-11-03 11:22:00 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2004-09-18 19:09:17 +02:00
|
|
|
url = http://ftp.gnu.org/gnu/binutils/binutils-2.15.tar.bz2;
|
|
|
|
md5 = "624e6b74983ac6b2960edaf2d522ca58";
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2004-09-18 19:09:17 +02:00
|
|
|
patches = [./no-lex.patch];
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit noSysDirs;
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|