2018-02-10 01:43:57 +00:00
|
|
|
{ stdenv, lib, fetchgit, perl, cdrkit, syslinux, xz, openssl
|
|
|
|
, embedScript ? null
|
|
|
|
}:
|
2014-12-02 06:06:10 +00:00
|
|
|
|
|
|
|
let
|
2018-02-27 20:25:13 +00:00
|
|
|
date = "20180220";
|
|
|
|
rev = "47849be3a900c546cf92066849be0806f4e611d9";
|
2014-12-02 06:06:10 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ipxe-${date}-${builtins.substring 0 7 rev}";
|
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
buildInputs = [ perl cdrkit syslinux xz openssl ];
|
2014-12-02 06:06:10 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = git://git.ipxe.org/ipxe.git;
|
2018-02-27 20:25:13 +00:00
|
|
|
sha256 = "1f4pi1dp2zqnrbfnggnzycfvrxv0bqgw73dxbyy3hfy4mhdj6z45";
|
2014-12-02 06:06:10 +00:00
|
|
|
inherit rev;
|
|
|
|
};
|
|
|
|
|
2016-02-22 00:44:58 +00:00
|
|
|
# not possible due to assembler code
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" ];
|
2016-02-22 00:44:58 +00:00
|
|
|
|
2016-03-19 18:50:36 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2014-12-02 06:06:10 +00:00
|
|
|
makeFlags =
|
|
|
|
[ "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo" # No /bin/echo here.
|
|
|
|
"ISOLINUX_BIN_LIST=${syslinux}/share/syslinux/isolinux.bin"
|
2018-02-26 22:50:56 +00:00
|
|
|
"LDLINUX_C32=${syslinux}/share/syslinux/ldlinux.c32"
|
2018-02-10 01:43:57 +00:00
|
|
|
] ++ lib.optional (embedScript != null) "EMBED=${embedScript}";
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
|
2016-10-18 05:18:52 +00:00
|
|
|
enabledOptions = [ "DOWNLOAD_PROTO_HTTPS" ];
|
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
configurePhase = ''
|
2016-10-18 05:18:52 +00:00
|
|
|
runHook preConfigure
|
|
|
|
for opt in $enabledOptions; do echo "#define $opt" >> src/config/general.h; done
|
2018-02-26 22:50:56 +00:00
|
|
|
sed -i '/cp \''${ISOLINUX_BIN}/s/$/ --no-preserve=mode/' src/util/geniso
|
2016-10-18 05:18:52 +00:00
|
|
|
runHook postConfigure
|
2016-09-25 02:35:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = "cd src";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp bin/ipxe.dsk bin/ipxe.usb bin/ipxe.iso bin/ipxe.lkrn bin/undionly.kpxe $out
|
2017-09-24 13:08:23 +00:00
|
|
|
|
|
|
|
# Some PXE constellations especially with dnsmasq are looking for the file with .0 ending
|
|
|
|
# let's provide it as a symlink to be compatible in this case.
|
|
|
|
ln -s undionly.kpxe $out/undionly.kpxe.0
|
2016-09-25 02:35:46 +00:00
|
|
|
'';
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2018-02-10 01:43:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-02 06:06:10 +00:00
|
|
|
meta = with stdenv.lib;
|
|
|
|
{ description = "Network boot firmware";
|
|
|
|
homepage = http://ipxe.org/;
|
|
|
|
license = licenses.gpl2;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-12-02 06:06:10 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|