summary refs log tree commit diff
path: root/pkgs/tools/misc/netbootxyz-efi/default.nix
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2021-12-12 17:30:26 +1100
committerMichael Hoang <enzime@users.noreply.github.com>2021-12-23 11:44:29 +1100
commit96690c5b6620866a6268dec07e21fa2f2f05aee1 (patch)
treeef70cb213f30dc690de50451a18b86765a3f6eff /pkgs/tools/misc/netbootxyz-efi/default.nix
parent81cef6b70fb5d5cdba5a0fef3f714c2dadaf0d6d (diff)
downloadnixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar.gz
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar.bz2
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar.lz
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar.xz
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.tar.zst
nixpkgs-96690c5b6620866a6268dec07e21fa2f2f05aee1.zip
netbootxyz-efi: init at 2.0.53
Diffstat (limited to 'pkgs/tools/misc/netbootxyz-efi/default.nix')
-rw-r--r--pkgs/tools/misc/netbootxyz-efi/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/misc/netbootxyz-efi/default.nix b/pkgs/tools/misc/netbootxyz-efi/default.nix
new file mode 100644
index 00000000000..1394a8e745c
--- /dev/null
+++ b/pkgs/tools/misc/netbootxyz-efi/default.nix
@@ -0,0 +1,21 @@
+{ lib
+, fetchurl
+}:
+
+let
+  pname = "netboot.xyz-efi";
+  version = "2.0.53";
+in fetchurl {
+  name = "${pname}-${version}";
+
+  url = "https://github.com/netbootxyz/netboot.xyz/releases/download/${version}/netboot.xyz.efi";
+  sha256 = "sha256-v7XqrhG94BLTpDHDazTiowQUXu/ITEcgVMmhlqgmSQE=";
+
+  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;
+  };
+}