python312Packages.icontract: relax deps (#380554)
[NixPkgs.git] / pkgs / by-name / ne / netbootxyz-efi / package.nix
blobbd2fc9fa09d151d7434d987f24e9d32f58182b40
2   lib,
3   fetchurl,
4 }:
6 let
7   pname = "netboot.xyz-efi";
8   version = "2.0.82";
9 in
10 fetchurl {
11   name = "${pname}-${version}";
13   url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
14   sha256 = "sha256-cO8MCkroQ0s/j8wnwwIWfnxEvChLeOZw+gD4wrYBAog=";
16   meta = with lib; {
17     homepage = "https://netboot.xyz/";
18     description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader";
19     license = licenses.asl20;
20     maintainers = [ ];
21     platforms = platforms.linux;
22   };