22 lines
576 B
Nix
22 lines
576 B
Nix
{ lib
|
|
, fetchurl
|
|
}:
|
|
|
|
let
|
|
pname = "netboot.xyz-efi";
|
|
version = "2.0.60";
|
|
in fetchurl {
|
|
name = "${pname}-${version}";
|
|
|
|
url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
|
|
sha256 = "sha256-E4NiziF1W1U0FcV2KWj3YVCGtbrKI48RDBpSw2NAMc0=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://netboot.xyz/";
|
|
description = "A tool to boot OS installers and utilities over the network, to be run from a bootloader";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ Enzime ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|