summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/helm
diff options
context:
space:
mode:
authorBenjamin Staffin <benley@gmail.com>2017-05-15 14:03:44 -0400
committerBenjamin Staffin <benley@gmail.com>2017-05-15 14:06:19 -0400
commit9e4c74b20289ccd757a7979d1805864c9a6db307 (patch)
tree0a13ea2fe73717da2190beabf8ca926700cf3862 /pkgs/applications/networking/cluster/helm
parent37cb24a318f1c54f2a84cbca84c9bfb1d500289c (diff)
kubernetes-helm: 2.3.1 -> 2.4.1
Diffstat (limited to 'pkgs/applications/networking/cluster/helm')
-rw-r--r--pkgs/applications/networking/cluster/helm/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix
index 2a0616f30946..8268b3baa981 100644
--- a/pkgs/applications/networking/cluster/helm/default.nix
+++ b/pkgs/applications/networking/cluster/helm/default.nix
@@ -4,17 +4,18 @@ let
then "linux-amd64"
else "darwin-amd64";
checksum = if stdenv.isLinux
- then "17fya0d1v2w44df5n5xb99vr8qjbnbfjvicsi9p7yz4iz2mcymd6"
- else "0299ffws37d60wim8kvdp4xrvqxa93sggrprgrsiclcp8bab0dcr";
-in
-stdenv.mkDerivation rec {
+ then "0vjkcilxzwvkgcczcbq58nl2j17ddqiysxm5yl13agnmxzvxw6r2"
+ else "1ga9gxzji48vhbaa0pkxd03h89zgjsbikbki9xla1qbvyvqjnw5g";
+
pname = "helm";
- version = "2.3.1";
+ version = "2.4.1";
+in
+stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
url = "https://kubernetes-helm.storage.googleapis.com/helm-v${version}-${arch}.tar.gz";
- sha256 = "${checksum}";
+ sha256 = checksum;
};
preferLocalBuild = true;