diff options
Diffstat (limited to 'pkgs/tools/misc/netbootxyz-efi/default.nix')
-rw-r--r-- | pkgs/tools/misc/netbootxyz-efi/default.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/tools/misc/netbootxyz-efi/default.nix b/pkgs/tools/misc/netbootxyz-efi/default.nix deleted file mode 100644 index f09a86fd76a3..000000000000 --- a/pkgs/tools/misc/netbootxyz-efi/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ lib -, fetchurl -}: - -let - pname = "netboot.xyz-efi"; - version = "2.0.75"; -in fetchurl { - name = "${pname}-${version}"; - - url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi"; - sha256 = "sha256-VaTUwX3S5Bj5eUZAspXNaVm8Y51hURL3xBb1tRdj6Zw="; - - meta = with lib; { - homepage = "https://netboot.xyz/"; - description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader"; - license = licenses.asl20; - maintainers = [ ]; - platforms = platforms.linux; - }; -} |