nixpkgs/pkgs/applications/misc/process-compose/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.9 KiB
Nix
Raw Normal View History

2022-11-19 14:04:22 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2023-01-06 13:52:50 +03:00
let config-module = "github.com/f1bonacc1/process-compose/src/config";
in
2022-11-19 14:04:22 +03:00
buildGoModule rec {
pname = "process-compose";
2024-08-10 17:13:10 +03:00
version = "1.18.0";
2022-11-19 14:04:22 +03:00
src = fetchFromGitHub {
owner = "F1bonacc1";
repo = pname;
rev = "v${version}";
2024-08-10 17:13:10 +03:00
hash = "sha256-S4MmE1LeX23dBceWoOPpd5xp+A0IxACzb9RSxtkf5tg=";
2023-01-06 13:52:50 +03:00
# populate values that require us to use git. By doing this in postFetch we
# can delete .git afterwards and maintain better reproducibility of the src.
leaveDotGit = true;
postFetch = ''
cd "$out"
git rev-parse --short HEAD > $out/COMMIT
# in format of 0000-00-00T00:00:00Z
date -u -d "@$(git log -1 --pretty=%ct)" "+%Y-%m-%dT%H:%M:%SZ" > $out/SOURCE_DATE_EPOCH
find "$out" -name .git -print0 | xargs -0 rm -rf
'';
2022-11-19 14:04:22 +03:00
};
2023-01-06 13:52:50 +03:00
# ldflags based on metadata from git and source
preBuild = ''
ldflags+=" -X ${config-module}.Commit=$(cat COMMIT)"
ldflags+=" -X ${config-module}.Date=$(cat SOURCE_DATE_EPOCH)"
'';
2022-12-11 01:47:06 +03:00
ldflags = [
2023-01-06 13:52:50 +03:00
"-X ${config-module}.Version=v${version}"
2022-12-11 01:47:06 +03:00
"-s"
"-w"
];
2022-11-19 14:04:22 +03:00
2022-12-11 01:47:06 +03:00
nativeBuildInputs = [
installShellFiles
];
2022-11-19 14:04:22 +03:00
2024-08-10 17:13:10 +03:00
vendorHash = "sha256-xGQf6E5QQyFdCUoFkPhWMlE6RQnQEJ/P6fBtUsaRz/Y=";
2022-11-19 14:04:22 +03:00
doCheck = false;
postInstall = ''
mv $out/bin/{src,process-compose}
installShellCompletion --cmd process-compose \
--bash <($out/bin/process-compose completion bash) \
--zsh <($out/bin/process-compose completion zsh) \
--fish <($out/bin/process-compose completion fish)
'';
meta = with lib; {
description = "Simple and flexible scheduler and orchestrator to manage non-containerized applications";
homepage = "https://github.com/F1bonacc1/process-compose";
2022-12-11 01:47:06 +03:00
changelog = "https://github.com/F1bonacc1/process-compose/releases/tag/v${version}";
2022-11-19 14:04:22 +03:00
license = licenses.asl20;
maintainers = with maintainers; [ thenonameguy ];
2024-02-11 05:19:15 +03:00
mainProgram = "process-compose";
2022-11-19 14:04:22 +03:00
};
}