summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/argo
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-12-16 00:29:07 -0800
committerGitHub <noreply@github.com>2022-12-16 16:29:07 +0800
commitf0c1df314b7b5fc64603bb07a50759267b285149 (patch)
treec276bfcfb0a2696d5dc59046379e00679c49e991 /pkgs/applications/networking/cluster/argo
parent2dfee2cc51ac86415bfc95815f0f218fbc2f61c4 (diff)
downloadnixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar.gz
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar.bz2
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar.lz
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar.xz
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.tar.zst
nixpkgs-f0c1df314b7b5fc64603bb07a50759267b285149.zip
argo: 3.4.3 -> 3.4.4
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Diffstat (limited to 'pkgs/applications/networking/cluster/argo')
-rw-r--r--pkgs/applications/networking/cluster/argo/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/applications/networking/cluster/argo/default.nix b/pkgs/applications/networking/cluster/argo/default.nix
index 577e4ba883d..f02b6e416c3 100644
--- a/pkgs/applications/networking/cluster/argo/default.nix
+++ b/pkgs/applications/networking/cluster/argo/default.nix
@@ -1,4 +1,11 @@
-{ lib, buildGoModule, buildGoPackage, fetchFromGitHub, installShellFiles, pkgsBuildBuild, stdenv }:
+{ lib
+, stdenv
+, buildGoModule
+, buildGoPackage
+, fetchFromGitHub
+, installShellFiles
+, pkgsBuildBuild
+}:
 
 let
   # Argo can package a static server in the CLI using the `staticfiles` go module.
@@ -19,22 +26,26 @@ let
 in
 buildGoModule rec {
   pname = "argo";
-  version = "3.4.3";
+  version = "3.4.4";
 
   src = fetchFromGitHub {
     owner = "argoproj";
     repo = "argo";
-    rev = "v${version}";
-    sha256 = "sha256-eVd3tH77Z3AlNpMEx+xnOQTELXFeGTLIslE++++Sdkw=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-ZG10ruusSywXWn88UqrHVfAWrio2KoK2YoM9qdtMlhU=";
   };
 
-  vendorSha256 = "sha256-n8NAxfNZ/q2gdA5N7dTNgvdB549aiRxFPJO4UsfIn2U=";
+  vendorHash = "sha256-Tqn5HGhRbN++yAo9JajUMTxFjVLw5QTvsis8wcfRIHw=";
 
   doCheck = false;
 
-  subPackages = [ "cmd/argo" ];
+  subPackages = [
+    "cmd/argo"
+  ];
 
-  nativeBuildInputs = [ installShellFiles ];
+  nativeBuildInputs = [
+    installShellFiles
+  ];
 
   preBuild = ''
     mkdir -p ui/dist/app
@@ -65,6 +76,7 @@ buildGoModule rec {
   meta = with lib; {
     description = "Container native workflow engine for Kubernetes";
     homepage = "https://github.com/argoproj/argo";
+    changelog = "https://github.com/argoproj/argo-workflows/blob/v${version}/CHANGELOG.md";
     license = licenses.asl20;
     maintainers = with maintainers; [ groodt ];
     platforms = platforms.unix;