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.

67 lines
1.9 KiB
Nix
Raw Normal View History

2022-11-19 11:04:22 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2023-01-06 10:52:50 +00:00
let config-module = "github.com/f1bonacc1/process-compose/src/config";
in
2022-11-19 11:04:22 +00:00
buildGoModule rec {
pname = "process-compose";
2023-03-03 07:28:12 +00:00
version = "0.43.1";
2022-11-19 11:04:22 +00:00
src = fetchFromGitHub {
owner = "F1bonacc1";
repo = pname;
rev = "v${version}";
2023-03-03 07:28:12 +00:00
hash = "sha256-yNYoVz6vITKkAkqH/0p7D4sifTpjtEZS4syFSwN4v98=";
2023-01-06 10:52:50 +00: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 11:04:22 +00:00
};
2023-01-06 10:52:50 +00: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-10 22:47:06 +00:00
ldflags = [
2023-01-06 10:52:50 +00:00
"-X ${config-module}.Version=v${version}"
2022-12-10 22:47:06 +00:00
"-s"
"-w"
];
2022-11-19 11:04:22 +00:00
2022-12-10 22:47:06 +00:00
nativeBuildInputs = [
installShellFiles
];
2022-11-19 11:04:22 +00:00
2023-03-03 07:28:12 +00:00
vendorHash = "sha256-iiGn0dYHNEp5Bs54X44sHbsG3HD92Xs4oah4iZXqqvQ=";
2022-11-19 11:04:22 +00: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 = "A simple and flexible scheduler and orchestrator to manage non-containerized applications";
homepage = "https://github.com/F1bonacc1/process-compose";
2022-12-10 22:47:06 +00:00
changelog = "https://github.com/F1bonacc1/process-compose/releases/tag/v${version}";
2022-11-19 11:04:22 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ thenonameguy ];
};
}