python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / netbootxyz-efi / default.nix
blob55588f46ac9f2e0153d6bcba1d622168303575cc
1 { lib
2 , fetchurl
3 }:
5 let
6   pname = "netboot.xyz-efi";
7   version = "2.0.60";
8 in fetchurl {
9   name = "${pname}-${version}";
11   url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
12   sha256 = "sha256-E4NiziF1W1U0FcV2KWj3YVCGtbrKI48RDBpSw2NAMc0=";
14   meta = with lib; {
15     homepage = "https://netboot.xyz/";
16     description = "A tool to boot OS installers and utilities over the network, to be run from a bootloader";
17     license = licenses.asl20;
18     maintainers = with maintainers; [ Enzime ];
19     platforms = platforms.linux;
20   };