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

Commits on Mar 28, 2019

  1. kubernetes: 1.13.4 -> 1.13.5

    Johan Thomsen committed Mar 28, 2019
    Copy the full SHA
    e76f30e View commit details
  2. Merge pull request #58477 from johanot/kubernetes-1.13.5

    kubernetes: 1.13.4 -> 1.13.5
    srhb authored Mar 28, 2019
    Copy the full SHA
    88b32b2 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/networking/cluster/kubernetes/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/kubernetes/default.nix
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@ with lib;

stdenv.mkDerivation rec {
name = "kubernetes-${version}";
version = "1.13.4";
version = "1.13.5";

src = fetchFromGitHub {
owner = "kubernetes";
repo = "kubernetes";
rev = "v${version}";
sha256 = "1q3dc416fr9nzy64pl7rydahygnird0vpk9yflssw7v9gx84m6x9";
sha256 = "06pf4h76zsqs3dsxr57y9sb9sw48nfyw1x2q1725zww61jfz2a6y";
};

buildInputs = [ removeReferencesTo makeWrapper which go rsync go-bindata ];