Merge pull request #62837 from yurrriq/update/helmfile

helmfile: fix modSha256
This commit is contained in:
worldofpeace 2019-06-07 18:17:44 -04:00 committed by GitHub
commit 8acf0935f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];