summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/helmfile/default.nix
diff options
context:
space:
mode:
authorEric Bailey <eric@ericb.me>2019-05-23 12:21:12 +0200
committerEric Bailey <eric@ericb.me>2019-05-23 12:21:12 +0200
commitd2838d20c6d0769843111984e476b901af918d97 (patch)
treee5d4e7c4b8d99c4a3a6b40482b997a16beef00cc /pkgs/applications/networking/cluster/helmfile/default.nix
parent99c8680f49b8f2d986c56d30725d19035e4843f8 (diff)
downloadnixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar.gz
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar.bz2
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar.lz
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar.xz
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.tar.zst
nixpkgs-d2838d20c6d0769843111984e476b901af918d97.zip
helmfile: 0.40.1 -> 0.64.1
- Adopt vgo2nix
- Add me to maintainers
Diffstat (limited to 'pkgs/applications/networking/cluster/helmfile/default.nix')
-rw-r--r--pkgs/applications/networking/cluster/helmfile/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/helmfile/default.nix b/pkgs/applications/networking/cluster/helmfile/default.nix
index 73ec998ed8e..6116a9b66da 100644
--- a/pkgs/applications/networking/cluster/helmfile/default.nix
+++ b/pkgs/applications/networking/cluster/helmfile/default.nix
@@ -1,6 +1,6 @@
 { lib, buildGoPackage, fetchFromGitHub, makeWrapper, kubernetes-helm, ... }:
 
-let version = "0.40.1"; in
+let version = "0.64.1"; in
 
 buildGoPackage {
   name = "helmfile-${version}";
@@ -9,9 +9,11 @@ buildGoPackage {
     owner = "roboll";
     repo = "helmfile";
     rev = "v${version}";
-    sha256 = "02ir10070rpayv9s53anldwjy5ggl268shgf085d188wl6vshaiv";
+    sha256 = "1258c545fv4mcrzaw3z5gxl264fcahigaijgkjd4igh4pl0z0wxk";
   };
 
+  goDeps = ./deps.nix;
+
   goPackagePath = "github.com/roboll/helmfile";
 
   nativeBuildInputs = [ makeWrapper ];
@@ -26,12 +28,11 @@ buildGoPackage {
       --prefix PATH : ${lib.makeBinPath [ kubernetes-helm ]}
   '';
 
-
   meta = {
     description = "Deploy Kubernetes Helm charts";
     homepage = https://github.com/roboll/helmfile;
     license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ pneumaticat ];
+    maintainers = with lib.maintainers; [ pneumaticat yurrriq ];
     platforms = lib.platforms.unix;
   };
 }