Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
712 B
Nix
32 lines
712 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "netboot.xyz-efi";
|
|
version = "2.0.88";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${finalAttrs.version}/netboot.xyz.efi";
|
|
hash = "sha256-ipbZJ0mPCuwzb/TDtXXUBTuWOcSsKGAJ1GEGIgB2G7E=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
postInstall = ''
|
|
cp $src $out
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://netboot.xyz/";
|
|
description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ pinpox ];
|
|
};
|
|
})
|