mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
commit
1d951cfa4b
28
pkgs/applications/networking/cluster/click/default.nix
Normal file
28
pkgs/applications/networking/cluster/click/default.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
}
|
@ -20347,6 +20347,8 @@ with pkgs;
|
|||||||
|
|
||||||
calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};
|
calaos_installer = libsForQt5.callPackage ../misc/calaos/installer {};
|
||||||
|
|
||||||
|
click = callPackage ../applications/networking/cluster/click { };
|
||||||
|
|
||||||
cups = callPackage ../misc/cups {
|
cups = callPackage ../misc/cups {
|
||||||
libusb = libusb1;
|
libusb = libusb1;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user