Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e05cd5460324
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d951cfa4bdb
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 4, 2018

  1. click: init at 0.3.1

    mbode committed Apr 4, 2018
    Copy the full SHA
    3fda552 View commit details

Commits on Apr 9, 2018

  1. Merge pull request #38225 from mbode/click_0_3_1

    click: init at 0.3.1
    matthewbauer authored Apr 9, 2018
    Copy the full SHA
    1d951cf View commit details
Showing with 30 additions and 0 deletions.
  1. +28 −0 pkgs/applications/networking/cluster/click/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
28 changes: 28 additions & 0 deletions pkgs/applications/networking/cluster/click/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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;
};