summary refs log tree commit diff
path: root/pkgs/tools/networking/pixiecore
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2020-03-25 12:05:01 -0400
committerBruno Bigras <bigras.bruno@gmail.com>2020-03-26 00:50:29 -0400
commit78fbe7dba6c8946c22a517f2c1b8fc994447f3b7 (patch)
tree1c73588b272e5b74808b34ef19ec02c20360085c /pkgs/tools/networking/pixiecore
parent2136d80fb396cfc6afd5c3de8c0e751020397c9a (diff)
downloadnixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar.gz
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar.bz2
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar.lz
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar.xz
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.tar.zst
nixpkgs-78fbe7dba6c8946c22a517f2c1b8fc994447f3b7.zip
pixiecore: init at 2020-03-25
Co-authored-by: raunovv <rauno@oyenetwork.com>
Diffstat (limited to 'pkgs/tools/networking/pixiecore')
-rw-r--r--pkgs/tools/networking/pixiecore/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/networking/pixiecore/default.nix b/pkgs/tools/networking/pixiecore/default.nix
new file mode 100644
index 00000000000..bc8ec7da169
--- /dev/null
+++ b/pkgs/tools/networking/pixiecore/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "pixiecore";
+  version = "2020-03-25";
+  rev = "68743c67a60c18c06cd21fd75143e3e069ca3cfc";
+
+  src = fetchFromGitHub {
+    owner = "danderson";
+    repo = "netboot";
+    inherit rev;
+    sha256 = "14dslmx3gk08h9gqfjw5y27x7d2c6r8ir7mjd7l9ybysagpzr02a";
+  };
+
+  modSha256 = "1waqaglm6f9zy5296z309ppkck2vmydhk9gjnxrgzmhqld5lcq4f";
+  subPackages = [ "cmd/pixiecore" ];
+
+  meta = {
+    description = "A tool to manage network booting of machines";
+    homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
+    license =  stdenv.lib.licenses.asl20;
+    maintainers = with stdenv.lib.maintainers; [ bbigras danderson ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}