5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
21 lines
549 B
Nix
21 lines
549 B
Nix
{ 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;
|
|
};
|
|
}
|