nixpkgs/pkgs/applications/misc/pueue/default.nix

35 lines
940 B
Nix
Raw Normal View History

2020-05-09 05:00:00 +00:00
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
2020-02-02 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2020-06-06 16:47:27 +00:00
version = "0.5.1";
2020-02-02 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2020-06-06 16:47:27 +00:00
sha256 = "1n85b41kvx7x7qdizdnq1p0zrkap4gkwnnvhh4pz6j9njxj8d9ir";
2020-02-02 09:20:00 +00:00
};
2020-06-06 16:47:27 +00:00
cargoSha256 = "0hkkz74hllc5dzmgls6bgdxsdr871df2fn51sa3shv68ah0avxff";
2020-02-02 09:20:00 +00:00
2020-05-09 05:00:00 +00:00
nativeBuildInputs = [ installShellFiles ];
checkFlagsArray = [ "--skip=test_single_huge_payload" ];
postInstall = ''
# zsh completion generation fails. See: https://github.com/Nukesor/pueue/issues/57
for shell in bash fish; do
$out/bin/pueue completions $shell .
installShellCompletion pueue.$shell
done
'';
2020-02-02 09:20:00 +00:00
meta = with lib; {
description = "A daemon for managing long running shell commands";
homepage = "https://github.com/Nukesor/pueue";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}