Skip to content

Commit

Permalink
helmfile: fix modSha256
Browse files Browse the repository at this point in the history
It seems like this was another case where my darwin setup was acting weird.
  • Loading branch information
yurrriq committed Jun 7, 2019
1 parent cb385da commit 7f9a2f0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pkgs/applications/networking/cluster/helmfile/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:

let version = "0.73.0"; in

Expand All @@ -15,9 +15,7 @@ buildGoModule {

goPackagePath = "github.com/roboll/helmfile";

modSha256 = if stdenv.isDarwin
then "0jqss8bgwvggygmr5y2yj98apkqs8z3vmwyfh2f6s67k68h57m57"
else "1ksz1c4j7mhsbq6ifqab04588d48c9glyhr4d3d4jyvi19qhwx1d";
modSha256 = "1ksz1c4j7mhsbq6ifqab04588d48c9glyhr4d3d4jyvi19qhwx1d";

nativeBuildInputs = [ makeWrapper ];

Expand Down

0 comments on commit 7f9a2f0

Please sign in to comment.