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

71 lines
2.1 KiB
Nix
Raw Normal View History

2017-03-13 15:40:43 +01:00
{ stdenv, fetchFromGitHub, fetchurl, nasm, perl, python, libuuid, mtools, makeWrapper }:
2006-10-12 15:09:27 +00:00
2010-08-06 22:27:28 +00:00
stdenv.mkDerivation rec {
2015-11-11 01:30:17 -08:00
name = "syslinux-2015-11-09";
2013-01-28 15:45:33 +01:00
2015-11-11 01:30:17 -08:00
src = fetchFromGitHub {
owner = "geneC";
repo = "syslinux";
rev = "0cc9a99e560a2f52bcf052fd85b1efae35ee812f";
sha256 = "0wk3r5ki4lc334f9jpml07wpl8d0bnxi9h1l4h4fyf9a0d7n4kmw";
2006-10-12 15:09:27 +00:00
};
2007-01-22 19:14:50 +00:00
2017-03-13 15:40:43 +01:00
patches = [
./perl-deps.patch
(fetchurl {
# ldlinux.elf: Not enough room for program headers, try linking with -N
name = "not-enough-room.patch";
url = "https://anonscm.debian.org/cgit/collab-maint/syslinux.git/plain/"
+ "debian/patches/0014_fix_ftbfs_no_dynamic_linker.patch?id=a556ad7";
sha256 = "0ijqjsjmnphmvsx0z6ppnajsfv6xh6crshy44i2a5klxw4nlvrsw";
})
];
2013-01-28 15:45:33 +01:00
2018-08-08 21:27:57 +00:00
postPatch = ''
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)
substituteInPlace gpxe/src/Makefile.housekeeping --replace /bin/echo $(type -P echo)
substituteInPlace utils/ppmtolss16 --replace /usr/bin/perl $(type -P perl)
substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl)
# fix tests
substituteInPlace tests/unittest/include/unittest/unittest.h \
--replace /usr/include/ ""
'';
2015-11-11 01:30:17 -08:00
nativeBuildInputs = [ nasm perl python ];
2015-12-08 10:59:48 +01:00
buildInputs = [ libuuid makeWrapper ];
2013-01-28 15:45:33 +01:00
2015-10-17 23:58:01 +03:00
enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...'
2016-04-03 12:51:54 +00:00
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
2007-01-22 19:14:50 +00:00
2015-10-14 14:27:13 +02:00
stripDebugList = "bin sbin share/syslinux/com32";
2014-06-18 19:54:19 -05:00
makeFlags = [
"BINDIR=$(out)/bin"
"SBINDIR=$(out)/sbin"
"LIBDIR=$(out)/lib"
"INCDIR=$(out)/include"
"DATADIR=$(out)/share"
"MANDIR=$(out)/share/man"
"PERL=perl"
"bios"
];
2018-08-08 21:27:57 +00:00
doCheck = false; # fails. some fail in a sandbox, others require qemu
2015-12-08 10:59:48 +01:00
postInstall = ''
wrapProgram $out/bin/syslinux \
--prefix PATH : "${mtools}/bin"
2018-05-23 20:59:42 +03:00
# Delete com32 headers to save space, nobody seems to be using them
rm -rf $out/share/syslinux/com32
2015-12-08 10:59:48 +01:00
'';
2014-06-18 19:54:19 -05:00
meta = with stdenv.lib; {
2013-01-28 15:45:33 +01:00
homepage = http://www.syslinux.org/;
description = "A lightweight bootloader";
2014-06-18 19:54:19 -05:00
license = licenses.gpl2;
2017-09-13 15:14:30 +03:00
platforms = [ "i686-linux" "x86_64-linux" ];
2013-01-28 15:45:33 +01:00
};
2006-10-12 15:09:27 +00:00
}