argo: 3.4.3 -> 3.4.4

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2022-12-16 00:29:07 -08:00 committed by GitHub
parent 2dfee2cc51
commit f0c1df314b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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