mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
commit
38230fe3b1
24
pkgs/applications/networking/cluster/kubernix/default.nix
Normal file
24
pkgs/applications/networking/cluster/kubernix/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -20264,6 +20264,8 @@ in
|
||||
|
||||
kubeseal = callPackage ../applications/networking/cluster/kubeseal { };
|
||||
|
||||
kubernix = callPackage ../applications/networking/cluster/kubernix { };
|
||||
|
||||
kubectl = callPackage ../applications/networking/cluster/kubectl { };
|
||||
|
||||
kubeless = callPackage ../applications/networking/cluster/kubeless { };
|
||||
|
Loading…
Reference in New Issue
Block a user