about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-02-19 21:45:23 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-02-19 21:45:23 +0100
commitd8e918fa7c66da6ee9f2e497130f2c9428766ae4 (patch)
tree78909502654b932a57083bc08ff1687de6c2180d /pkgs/applications/networking
parent7694c5149a01992fce421f1c251117876c673fb5 (diff)
downloadnixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar.gz
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar.bz2
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar.lz
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar.xz
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.tar.zst
nixlib-d8e918fa7c66da6ee9f2e497130f2c9428766ae4.zip
minishift: 1.30.0 -> 1.31.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/cluster/minishift/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/minishift/default.nix b/pkgs/applications/networking/cluster/minishift/default.nix
index de11a116533b..bb10349470f6 100644
--- a/pkgs/applications/networking/cluster/minishift/default.nix
+++ b/pkgs/applications/networking/cluster/minishift/default.nix
@@ -4,7 +4,7 @@
 }:
 
 let
-  version = "1.30.0";
+  version = "1.31.0";
 
   # Update these on version bumps according to Makefile
   centOsIsoVersion = "v1.14.0";
@@ -18,7 +18,7 @@ in buildGoPackage rec {
     owner = "minishift";
     repo = "minishift";
     rev = "v${version}";
-    sha256 = "0p7g7r4m3brssy2znw7pd60aph6m6absqy23x88c07n5n4mv9wj8";
+    sha256 = "0v5hngfz393yi3x4c328g5bjazw02jr59ljqh6ws0j6wzxzm8jxf";
   };
 
   nativeBuildInputs = [ pkgconfig go-bindata makeWrapper ];
@@ -28,9 +28,6 @@ in buildGoPackage rec {
   subPackages = [ "cmd/minishift" ];
 
   postPatch = ''
-    substituteInPlace vendor/github.com/containers/image/storage/storage_image.go \
-      --replace 'nil, diff' 'diff'
-
     # minishift downloads openshift if not found therefore set the cache to /nix/store/...
     substituteInPlace pkg/minishift/cache/oc_caching.go \
       --replace 'filepath.Join(oc.MinishiftCacheDir, OC_CACHE_DIR, oc.OpenShiftVersion, runtime.GOOS)' '"${openshift}/bin"' \