kubie: init at 0.7.1

This commit is contained in:
Mat Marini 2020-03-07 13:55:51 -05:00 committed by Robert Helgesson
parent 4a148470e4
commit 0f9179137c
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub }:
with rustPlatform;
buildRustPackage rec {
pname = "kubie";
version = "0.7.1";
src = fetchFromGitHub {
rev = "v${version}";
owner = "sbstp";
repo = "kubie";
sha256 = "0c94ggrkzyy8zl2z5r4pgfscyhcjp4x64k3bl2byqp3ysgjwkjqx";
};
cargoSha256 = "1lzyda838s9fmg8hibg2w2wszwyvvqsy20w9877skfcx370rvndi";
meta = with stdenv.lib; {
description =
"Shell independent context and namespace switcher for kubectl";
homepage = "https://github.com/sbstp/kubie";
license = with licenses; [ zlib ];
maintainers = with maintainers; [ illiusdope ];
platforms = platforms.all;
};
}

View File

@ -10355,6 +10355,8 @@ in
kubicorn = callPackage ../development/tools/kubicorn { };
kubie = callPackage ../development/tools/kubie { };
kustomize = callPackage ../development/tools/kustomize { };
ktlint = callPackage ../development/tools/ktlint { };