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: 9d127f245087
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 359facc3d318
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 23, 2019

  1. kind: 0.1.0 -> 0.2.1

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Apr 23, 2019
    Copy the full SHA
    da57a2f View commit details
  2. Merge pull request #60093 from thoughtpolice/nixpkgs/kind-update

    kind: 0.1.0 -> 0.2.1
    thoughtpolice authored Apr 23, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    359facc View commit details
Showing with 11 additions and 8 deletions.
  1. +11 −8 pkgs/development/tools/kind/default.nix
19 changes: 11 additions & 8 deletions pkgs/development/tools/kind/default.nix
Original file line number Diff line number Diff line change
@@ -4,23 +4,26 @@ with stdenv.lib;

buildGoPackage rec {
name = "kind-${version}";
version = "0.1.0";
version = "0.2.1";

src = fetchFromGitHub {
rev = "${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "01ifmnv3jid4ls6qw9d6j9vldjbbnrwclzv8spnh6fnzb2wprln2";
rev = "${version}";
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "14ddhml9rh7x4j315fb332206xbn1rzx3i0ngj3220vb6d5dv8if";
};

# move dev tool package that confuses the go compiler
patchPhase = "rm -r hack";

goPackagePath = "sigs.k8s.io/kind";
excludedPackages = "images/base/entrypoint";

meta = {
description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
homepage = https://github.com/kubernetes-sigs/kind;
homepage = https://github.com/kubernetes-sigs/kind;
maintainers = with maintainers; [ offline rawkode ];
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
license = stdenv.lib.licenses.asl20;
platforms = platforms.unix;
};
}