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

34 lines
894 B
Nix
Raw Normal View History

2020-05-08 22:00:00 -07:00
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
2020-02-02 01:20:00 -08:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2021-03-13 03:43:48 -08:00
version = "0.12.1";
2020-02-02 01:20:00 -08:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2021-03-13 03:43:48 -08:00
sha256 = "sha256-wcOF34GzlB6YKISkjDgYgsaN1NmWBMIntfT23A6byx8=";
2020-02-02 01:20:00 -08:00
};
2021-03-13 03:43:48 -08:00
cargoSha256 = "sha256-7SJjtHNSabE/VqdiSwKZ/yNzk6GSMNsQLaSx/MjN5NA=";
2020-02-02 01:20:00 -08:00
2020-05-08 22:00:00 -07:00
nativeBuildInputs = [ installShellFiles ];
2020-10-25 14:24:00 -07:00
checkFlags = [ "--skip=test_single_huge_payload" "--skip=test_create_unix_socket" ];
2020-05-08 22:00:00 -07:00
postInstall = ''
2020-11-17 20:20:00 -08:00
for shell in bash fish zsh; do
2020-05-08 22:00:00 -07:00
$out/bin/pueue completions $shell .
done
2020-11-17 20:20:00 -08:00
installShellCompletion pueue.{bash,fish} _pueue
2020-05-08 22:00:00 -07:00
'';
2020-02-02 01:20:00 -08: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 ];
};
}