2005-07-25 18:58:57 +02:00
|
|
|
{stdenv, fetchurl, nasm, perl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "syslinux-3.09";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/syslinux-3.09.tar.bz2;
|
2005-07-25 18:58:57 +02:00
|
|
|
md5 = "dd403b15ef18bb0e5d78d3f552f822a5";
|
|
|
|
};
|
|
|
|
buildInputs = [nasm perl];
|
2005-07-31 13:24:26 +02:00
|
|
|
patches = [./syslinux-installpath.patch];
|
2005-07-25 18:58:57 +02:00
|
|
|
}
|