about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/helmfile
diff options
context:
space:
mode:
authorEric Bailey <eric@ericb.me>2019-06-07 15:08:21 -0500
committerEric Bailey <eric@ericb.me>2019-06-07 15:13:02 -0500
commit7f9a2f0de7f403aa555cbf885bdc2f232af7cd61 (patch)
tree60553933f8aa6dd7852d033c13d426def67abf34 /pkgs/applications/networking/cluster/helmfile
parentcb385daf953840341a560f73caf66445ce75836a (diff)
helmfile: fix modSha256
It seems like this was another case where my darwin setup was acting weird.
Diffstat (limited to 'pkgs/applications/networking/cluster/helmfile')
-rw-r--r--pkgs/applications/networking/cluster/helmfile/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/helmfile/default.nix b/pkgs/applications/networking/cluster/helmfile/default.nix
index d69b7275c0af5..cc87aaa5e384e 100644
--- a/pkgs/applications/networking/cluster/helmfile/default.nix
+++ b/pkgs/applications/networking/cluster/helmfile/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
+{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
 
 let version = "0.73.0"; in
 
@@ -15,9 +15,7 @@ buildGoModule {
 
   goPackagePath = "github.com/roboll/helmfile";
 
-  modSha256 = if stdenv.isDarwin
-                then "0jqss8bgwvggygmr5y2yj98apkqs8z3vmwyfh2f6s67k68h57m57"
-                else "1ksz1c4j7mhsbq6ifqab04588d48c9glyhr4d3d4jyvi19qhwx1d";
+  modSha256 = "1ksz1c4j7mhsbq6ifqab04588d48c9glyhr4d3d4jyvi19qhwx1d";
 
   nativeBuildInputs = [ makeWrapper ];