Merge pull request #38225 from mbode/click_0_3_1

click: init at 0.3.1
This commit is contained in:
Matthew Justin Bauer 2018-04-08 21:29:47 -05:00 committed by GitHub
commit 1d951cfa4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ darwin, fetchFromGitHub, rustPlatform, stdenv }:
with rustPlatform;
buildRustPackage rec {
name = "click-${version}";
version = "0.3.1";
rev = "b5dfb4a8f8344330a098cb61523695dfe0fd296a";
src = fetchFromGitHub {
owner = "databricks";
repo = "click";
sha256 = "0a2hq4hcxkkx7gs5dv7sr3j5jy2dby4r6y090z7zl2xy5wydr7bi";
inherit rev;
};
cargoSha256 = "03vgbkv9xsnx44vivbbhjgxv9drp0yjnimgy6hwm32x74r00k3hj";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
meta = with stdenv.lib; {
description = ''The "Command Line Interactive Controller for Kubernetes"'';
homepage = https://github.com/databricks/click;
license = [ licenses.asl20 ];
maintainers = [ maintainers.mbode ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}

View file

@ -20347,6 +20347,8 @@ with pkgs;
calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};
click = callPackage ../applications/networking/cluster/click { };
cups = callPackage ../misc/cups {
libusb = libusb1;
};