about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kubernix
diff options
context:
space:
mode:
authorSascha Grunert <sgrunert@suse.com>2019-11-14 11:11:59 +0100
committerSascha Grunert <sgrunert@suse.com>2020-04-29 09:27:09 +0200
commitc07a4675a3b00cc3c462e1e6cb893cc437f30f4e (patch)
tree5d0437abfe3087ab67aedd0988df21b2b2bf5b42 /pkgs/applications/networking/cluster/kubernix
parent2b5e2ffe0a619f7315ff00bc2e16664ece2e4dbb (diff)
downloadnixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar.gz
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar.bz2
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar.lz
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar.xz
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.tar.zst
nixlib-c07a4675a3b00cc3c462e1e6cb893cc437f30f4e.zip
kubernix: v0.2.0
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'pkgs/applications/networking/cluster/kubernix')
-rw-r--r--pkgs/applications/networking/cluster/kubernix/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/kubernix/default.nix b/pkgs/applications/networking/cluster/kubernix/default.nix
new file mode 100644
index 000000000000..2251b12e499a
--- /dev/null
+++ b/pkgs/applications/networking/cluster/kubernix/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "kubernix";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "saschagrunert";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "04dzfdzjwcwwaw9min322g30q0saxpq5kqzld4f22fmk820ki6gp";
+  };
+
+  cargoSha256 = "17agwqx7nhzi124yq1s6zpqb227drrhp9c11r3jbicc08dz88bwg";
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Single dependency Kubernetes clusters for local testing, experimenting and development";
+    homepage = "https://github.com/saschagrunert/kubernix";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ saschagrunert ];
+    platforms = platforms.linux;
+  };
+}