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

Commits on Jun 20, 2019

  1. kops: 1.11.1->1.12.1

    Ari Becker committed Jun 20, 2019
    Copy the full SHA
    b28a4b7 View commit details

Commits on Jun 25, 2019

  1. Merge pull request #63562 from ari-becker/update/kops

    kops: 1.11.1->1.12.1
    nlewo authored Jun 25, 2019
    Copy the full SHA
    880bc93 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/networking/cluster/kops/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/kops/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

buildGoPackage rec {
name = "kops-${version}";
version = "1.11.1";
version = "1.12.1";

goPackagePath = "k8s.io/kops";

src = fetchFromGitHub {
rev = version;
owner = "kubernetes";
repo = "kops";
sha256 = "0jia8dhawh786grnbpn64hvsdm6wz5p7hqir01q5xxpd1psnzygj";
sha256 = "09rmgazdrmnh1lqaayzfbn0ld7mbj9whihs9ijv5gf6si9p0ml9y";
};

buildInputs = [go-bindata];