nixpkgs/pkgs/os-specific/linux/syslinux/default.nix

41 lines
1020 B
Nix
Raw Normal View History

{ stdenv, fetchurl, nasm, perl, libuuid }:
stdenv.mkDerivation rec {
2014-11-02 14:14:50 +03:00
name = "syslinux-6.03";
src = fetchurl {
2014-06-19 04:54:19 +04:00
url = "mirror://kernel/linux/utils/boot/syslinux/${name}.tar.xz";
2014-11-02 14:14:50 +03:00
sha256 = "03l5iifwlg1wyb4yh98i0b7pd4j55a1c9y74q1frs47a5dnrilr6";
};
patches = [ ./perl-deps.patch ];
buildInputs = [ nasm perl libuuid ];
enableParallelBuilding = true;
2014-06-19 04:54:19 +04:00
preBuild = ''
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)
substituteInPlace gpxe/src/Makefile.housekeeping --replace /bin/echo $(type -P echo)
substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl)
'';
2014-06-19 04:54:19 +04:00
makeFlags = [
"BINDIR=$(out)/bin"
"SBINDIR=$(out)/sbin"
"LIBDIR=$(out)/lib"
"INCDIR=$(out)/include"
"DATADIR=$(out)/share"
"MANDIR=$(out)/share/man"
"PERL=perl"
"bios"
];
meta = with stdenv.lib; {
homepage = http://www.syslinux.org/;
description = "A lightweight bootloader";
2014-06-19 04:54:19 +04:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}