nixpkgs/pkgs/tools/misc/ipxe/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
2.9 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, unstableGitUpdater
, gnu-efi, mtools, openssl, perl, xorriso, xz
2021-05-25 19:10:54 +01:00
, syslinux ? null
, embedScript ? null
, additionalTargets ? {}
}:
2014-12-02 06:06:10 +00:00
let
targets = additionalTargets // lib.optionalAttrs stdenv.isx86_64 {
"bin-x86_64-efi/ipxe.efi" = null;
"bin-x86_64-efi/ipxe.efirom" = null;
"bin-x86_64-efi/ipxe.usb" = "ipxe-efi.usb";
} // lib.optionalAttrs stdenv.hostPlatform.isx86 {
"bin/ipxe.dsk" = null;
"bin/ipxe.usb" = null;
"bin/ipxe.iso" = null;
"bin/ipxe.lkrn" = null;
"bin/undionly.kpxe" = null;
2021-05-25 19:10:54 +01:00
} // lib.optionalAttrs stdenv.isAarch32 {
"bin-arm32-efi/ipxe.efi" = null;
"bin-arm32-efi/ipxe.efirom" = null;
"bin-arm32-efi/ipxe.usb" = "ipxe-efi.usb";
} // lib.optionalAttrs stdenv.isAarch64 {
"bin-arm64-efi/ipxe.efi" = null;
"bin-arm64-efi/ipxe.efirom" = null;
"bin-arm64-efi/ipxe.usb" = "ipxe-efi.usb";
};
2014-12-02 06:06:10 +00:00
in
2020-01-22 09:20:35 +00:00
stdenv.mkDerivation rec {
pname = "ipxe";
version = "unstable-2022-04-06";
2014-12-02 06:06:10 +00:00
nativeBuildInputs = [ gnu-efi mtools openssl perl xorriso xz ] ++ lib.optional stdenv.hostPlatform.isx86 syslinux;
2014-12-02 06:06:10 +00:00
2020-01-22 09:20:35 +00:00
src = fetchFromGitHub {
owner = "ipxe";
repo = "ipxe";
rev = "70995397e5bdfd3431e12971aa40630c7014785f";
sha256 = "SrTNEYk13JXAcJuogm9fZ7CrzJIDRc0aziGdjRNv96I=";
2014-12-02 06:06:10 +00:00
};
# not possible due to assembler code
hardeningDisable = [ "pic" "stackprotector" ];
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.
] ++ lib.optional (embedScript != null) "EMBED=${embedScript}";
2014-12-02 06:06:10 +00:00
enabledOptions = [
"PING_CMD"
"IMAGE_TRUST_CMD"
"DOWNLOAD_PROTO_HTTP"
"DOWNLOAD_PROTO_HTTPS"
];
configurePhase = ''
runHook preConfigure
for opt in ${lib.escapeShellArgs enabledOptions}; do echo "#define $opt" >> src/config/general.h; done
2019-03-07 15:11:54 +00:00
substituteInPlace src/Makefile.housekeeping --replace '/bin/echo' echo
'' + lib.optionalString stdenv.hostPlatform.isx86 ''
substituteInPlace src/util/genfsimg --replace /usr/lib/syslinux ${syslinux}/share/syslinux
'' + ''
runHook postConfigure
'';
preBuild = "cd src";
buildFlags = lib.attrNames targets;
2019-03-07 15:11:54 +00:00
installPhase = ''
2021-07-14 10:46:41 +01:00
runHook preInstall
mkdir -p $out
${lib.concatStringsSep "\n" (lib.mapAttrsToList (from: to:
if to == null
then "cp -v ${from} $out"
else "cp -v ${from} $out/${to}") targets)}
2017-09-24 14:08:23 +01: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
2021-07-14 10:46:41 +01:00
runHook postInstall
'';
2014-12-02 06:06:10 +00:00
enableParallelBuilding = true;
passthru.updateScript = unstableGitUpdater {};
2021-01-15 09:19:50 +00:00
meta = with lib;
2014-12-02 06:06:10 +00:00
{ description = "Network boot firmware";
homepage = "https://ipxe.org/";
2021-07-14 10:46:41 +01:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ ehmry ];
2021-05-25 19:10:54 +01:00
platforms = platforms.linux;
2014-12-02 06:06:10 +00:00
};
}