-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201877 from thenonameguy/process-compose
process-compose: init at 0.24.1
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ lib | ||
, buildGoModule | ||
, fetchFromGitHub | ||
, installShellFiles | ||
}: | ||
|
||
buildGoModule rec { | ||
pname = "process-compose"; | ||
version = "0.24.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "F1bonacc1"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "TKLLq6I+Mcvdz51m8nydTWcslBcQlJCJFoJ10SgfVWU="; | ||
}; | ||
|
||
ldflags = [ "-X main.version=v${version}" ]; | ||
|
||
nativeBuildInputs = [ installShellFiles ]; | ||
|
||
vendorSha256 = "IsO1B6z1/HoGQ8xdNKQqZ/eZd90WikDbU9XiP0z28mU="; | ||
|
||
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"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ thenonameguy ]; | ||
mainProgram = "process-compose"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters