mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
95 lines
2.4 KiB
Nix
95 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, pkgsBuildBuild
|
|
}:
|
|
|
|
let
|
|
# Argo can package a static server in the CLI using the `staticfiles` go module.
|
|
# We build the CLI without the static server for simplicity, but the tool is still required for
|
|
# compilation to succeed.
|
|
# See: https://github.com/argoproj/argo/blob/d7690e32faf2ac5842468831daf1443283703c25/Makefile#L117
|
|
staticfiles = pkgsBuildBuild.buildGoModule rec {
|
|
name = "staticfiles";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bouk";
|
|
repo = "staticfiles";
|
|
rev = "827d7f6389cd410d0aa3f3d472a4838557bf53dd";
|
|
hash = "sha256-wchj5KjhTmhc4XVW0sRFCcyx5W9am8TNAIhej3WFWXU=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
excludedPackages = [ "./example" ];
|
|
|
|
preBuild = ''
|
|
cp ${./staticfiles.go.mod} go.mod
|
|
'';
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
};
|
|
in
|
|
buildGoModule rec {
|
|
pname = "argo";
|
|
version = "3.5.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "argoproj";
|
|
repo = "argo";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-35Hp5lISQuFNsbSOKsLRcD695ZRCgQue+H8rKEPma5M=";
|
|
};
|
|
|
|
vendorHash = "sha256-dGDXDpjf1kWcqBhCMKLXGXax6ApOL9eIiiem86CxdGs=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [
|
|
"cmd/argo"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
preBuild = ''
|
|
mkdir -p ui/dist/app
|
|
echo "Built without static files" > ui/dist/app/index.html
|
|
|
|
${staticfiles}/bin/staticfiles -o server/static/files.go ui/dist/app
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/argoproj/argo-workflows/v3.buildDate=unknown"
|
|
"-X github.com/argoproj/argo-workflows/v3.gitCommit=${src.rev}"
|
|
"-X github.com/argoproj/argo-workflows/v3.gitTag=${src.rev}"
|
|
"-X github.com/argoproj/argo-workflows/v3.gitTreeState=clean"
|
|
"-X github.com/argoproj/argo-workflows/v3.version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
for shell in bash zsh; do
|
|
${if (stdenv.buildPlatform == stdenv.hostPlatform)
|
|
then "$out/bin/argo"
|
|
else "${pkgsBuildBuild.argo}/bin/argo"
|
|
} completion $shell > argo.$shell
|
|
installShellCompletion argo.$shell
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Container native workflow engine for Kubernetes";
|
|
mainProgram = "argo";
|
|
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;
|
|
};
|
|
}
|