2022-01-13 20:06:32 +00:00
|
|
|
{ lib
|
|
|
|
, fetchurl
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "netboot.xyz-efi";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "2.0.75";
|
2022-01-13 20:06:32 +00:00
|
|
|
in fetchurl {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
|
2024-01-02 11:29:13 +00:00
|
|
|
sha256 = "sha256-VaTUwX3S5Bj5eUZAspXNaVm8Y51hURL3xBb1tRdj6Zw=";
|
2022-01-13 20:06:32 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://netboot.xyz/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Tool to boot OS installers and utilities over the network, to be run from a bootloader";
|
2022-01-13 20:06:32 +00:00
|
|
|
license = licenses.asl20;
|
2024-07-27 06:49:29 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2022-01-13 20:06:32 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|