summary refs log tree commit diff
path: root/pkgs/os-specific/linux/syslinux/syslinux-3.20.nix
blob: c84b416bc3908ce24a9da87aa4ec21660b70374f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, nasm, perl}:

stdenv.mkDerivation {
  name = "syslinux-3.20";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-3.20.tar.bz2;
    md5 = "0701e0de1de6d31bdd889384b041e5b7";
  };
 buildInputs = [nasm perl];
 patches = [./syslinux-3.20-installpath.patch];
}