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

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