3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
13 lines
317 B
Nix
13 lines
317 B
Nix
{stdenv, fetchurl, nasm, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "syslinux-3.09";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/syslinux-3.09.tar.bz2;
|
|
md5 = "dd403b15ef18bb0e5d78d3f552f822a5";
|
|
};
|
|
buildInputs = [nasm perl];
|
|
patches = [./syslinux-installpath.patch];
|
|
}
|