3
0
Fork 0
forked from mirrors/nixpkgs

pueue: init at 0.1.5

This commit is contained in:
Mario Rodas 2020-02-02 04:20:00 -05:00
parent d765d00a79
commit 902878c4df
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "pueue";
version = "0.1.5";
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
sha256 = "03aj4vw8kvwqk1i1a4kah5b574ahs930ij7xmqsvdy7f8c2g6pbq";
};
nativeBuildInputs = [ installShellFiles ];
cargoSha256 = "1y33n0dmrssv35l0apfq1mchyh92cfbzjarh0m8zb2nxwhvk7paw";
postInstall = ''
installShellCompletion utils/completions/pueue.{bash,fish} --zsh utils/completions/_pueue
'';
meta = with lib; {
description = "A daemon for managing long running shell commands";
homepage = "https://github.com/Nukesor/pueue";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -2043,6 +2043,8 @@ in
parallel-rust = callPackage ../tools/misc/parallel-rust { };
pueue = callPackage ../applications/misc/pueue { };
pyCA = python3Packages.callPackage ../applications/video/pyca {};
pyznap = python3Packages.callPackage ../tools/backup/pyznap {};