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

Commits on Apr 10, 2020

  1. minikube: 1.8.1 -> 1.9.2

    ngerstle committed Apr 10, 2020
    Copy the full SHA
    5c644c4 View commit details

Commits on Apr 11, 2020

  1. Merge pull request #84931 from ngerstle/update-minikube

    minikube: 1.8.1 -> 1.9.2
    Ma27 authored Apr 11, 2020
    Copy the full SHA
    3b15c63 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/networking/cluster/minikube/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/networking/cluster/minikube/default.nix
Original file line number Diff line number Diff line change
@@ -10,19 +10,19 @@

buildGoModule rec {
pname = "minikube";
version = "1.8.1";
version = "1.9.2";
# for -ldflags
commit = "cbda04cf6bbe65e987ae52bb393c10099ab62014";
commit = "1b78a7b8a99ad6a3c62b8d22f57120d614d17935";

goPackagePath = "k8s.io/minikube";
subPackages = [ "cmd/minikube" ];
modSha256 = "1wyz8aq291lx614ilqrcgzdc8rjxbd6v3rv1fy6r2m6snyysycfn";
modSha256 = "1pxs6myszgma3rzz0nhfjbnylv6m0xzlinvmlg0c4ijvkkzxg3v5";

src = fetchFromGitHub {
owner = "kubernetes";
repo = "minikube";
rev = "v${version}";
sha256 = "1nf0n701rw3anp8j7k3f553ipqwpzzxci41zsi0il4l35dpln5g0";
sha256 = "025v45427d885qkjjg7ig8fgrvjalnf1lajsj0cnbwbih2m69svg";
};

nativeBuildInputs = [ pkgconfig go-bindata makeWrapper ];