depot/third_party/nixpkgs/pkgs/tools/misc/netbootxyz-efi/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

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