base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ne / netbootxyz-efi / package.nix
blob7137f22e89987af813cd9a865afba6f547aad6dc
1 { lib
2 , fetchurl
3 }:
5 let
6   pname = "netboot.xyz-efi";
7   version = "2.0.82";
8 in fetchurl {
9   name = "${pname}-${version}";
11   url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
12   sha256 = "sha256-cO8MCkroQ0s/j8wnwwIWfnxEvChLeOZw+gD4wrYBAog=";
14   meta = with lib; {
15     homepage = "https://netboot.xyz/";
16     description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader";
17     license = licenses.asl20;
18     maintainers = [ ];
19     platforms = platforms.linux;
20   };