nixpkgs/pkgs/tools/misc/netbootxyz-efi/default.nix
2022-08-23 21:48:16 +02:00

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;
};
}