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

94 lines
3.1 KiB
Nix
Raw Normal View History

2020-04-12 20:32:05 +02:00
{ stdenv, fetchgit, fetchurl, fetchpatch, nasm, perl, python3, libuuid, mtools, makeWrapper }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2020-04-12 20:32:05 +02:00
pname = "syslinux";
version = "unstable-20190207";
2020-01-14 23:01:57 +01:00
# This is syslinux-6.04-pre3^1; syslinux-6.04-pre3 fails to run.
# Same issue here https://www.syslinux.org/archives/2019-February/026330.html
2020-04-12 20:32:05 +02:00
src = fetchgit {
url = "https://repo.or.cz/syslinux";
2020-01-14 23:01:57 +01:00
rev = "b40487005223a78c3bb4c300ef6c436b3f6ec1f7";
2020-04-12 20:32:05 +02:00
sha256 = "1acf6byx7i6vz8hq6mra526g8mf7fmfhid211y8nq0v6px7d3aqs";
fetchSubmodules = true;
};
patches = let
mkURL = commit: patchName:
"https://salsa.debian.org/images-team/syslinux/raw/${commit}/debian/patches/"
+ patchName;
in [
(fetchurl {
2020-01-14 23:01:57 +01:00
url = mkURL "fa1349f1" "0002-gfxboot-menu-label.patch";
sha256 = "06ifgzbpjj4picpj17zgprsfi501zf4pp85qjjgn29i5rs291zni";
})
2020-04-12 20:32:05 +02:00
(fetchpatch {
url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/0005-gnu-efi-version-compatibility.patch?h=packages/syslinux";
sha256 = "0fbqz56hj8az8ws26m39hyp3l5fvcbzvzdddqz3x6n56hzdpz1p6";
})
(fetchurl {
# mbr.bin: too big (452 > 440)
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906414
url = mkURL "7468ef0e38c43" "0016-strip-gnu-property.patch";
sha256 = "17n63b8wz6szv8npla1234g1ip7lqgzx2whrpv358ppf67lq8vwm";
})
(fetchurl {
# mbr.bin: too big (452 > 440)
url = mkURL "012e1dd312eb" "0017-single-load-segment.patch";
sha256 = "0azqzicsjw47b9ppyikhzaqmjl4lrvkxris1356bkmgcaiv6d98b";
})
2020-01-14 23:01:57 +01:00
(fetchurl {
url = mkURL "26f0e7b2" "0018-prevent-pow-optimization.patch";
sha256 = "1c8g0jz5yj9a0rsmryx9vdjsw4hw8mjfcg05c9pmyjg85w3dfp3m";
})
];
2018-08-08 23:27:57 +02:00
postPatch = ''
2014-06-19 02:54:19 +02:00
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)
substituteInPlace utils/ppmtolss16 --replace /usr/bin/perl $(type -P perl)
2018-08-08 23:27:57 +02:00
# fix tests
substituteInPlace tests/unittest/include/unittest/unittest.h \
--replace /usr/include/ ""
2020-04-12 20:32:05 +02:00
# Hack to get `gcc -m32' to work without having 32-bit Glibc headers.
mkdir gnu-efi/inc/ia32/gnu
touch gnu-efi/inc/ia32/gnu/stubs-32.h
2014-06-19 02:54:19 +02:00
'';
2020-01-14 23:01:57 +01:00
nativeBuildInputs = [ nasm perl python3 ];
2018-08-08 23:27:57 +02:00
buildInputs = [ libuuid makeWrapper ];
enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...'
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
stripDebugList = [ "bin" "sbin" "share/syslinux/com32" ];
2014-06-19 02:54:19 +02:00
makeFlags = [
"BINDIR=$(out)/bin"
"SBINDIR=$(out)/sbin"
"DATADIR=$(out)/share"
"MANDIR=$(out)/share/man"
"PERL=perl"
]
++ stdenv.lib.optionals stdenv.hostPlatform.isi686 [ "bios" "efi32" ];
2014-06-19 02:54:19 +02:00
2018-08-08 23:27:57 +02:00
doCheck = false; # fails. some fail in a sandbox, others require qemu
postInstall = ''
wrapProgram $out/bin/syslinux \
--prefix PATH : "${mtools}/bin"
2018-05-23 19:59:42 +02:00
# Delete com32 headers to save space, nobody seems to be using them
rm -rf $out/share/syslinux/com32
'';
2014-06-19 02:54:19 +02:00
meta = with stdenv.lib; {
homepage = "http://www.syslinux.org/";
description = "A lightweight bootloader";
2014-06-19 02:54:19 +02:00
license = licenses.gpl2;
2019-02-10 05:20:56 +01:00
maintainers = [ maintainers.samueldr ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}