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

34 lines
894 B
Nix
Raw Normal View History

2020-05-09 06:00:00 +01:00
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
2020-02-02 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2021-02-11 22:02:14 +00:00
version = "0.12.0";
2020-02-02 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2021-02-11 22:02:14 +00:00
sha256 = "sha256-yOUVDq/wRY35ZQjQVwTLYHKukkKpoggN51wBDdZnhI4=";
2020-02-02 09:20:00 +00:00
};
2021-02-11 22:02:14 +00:00
cargoSha256 = "sha256-56jJ8IjxWTBlaDd1CVit4RP659Mgw2j2wMWcSDYVihM=";
2020-02-02 09:20:00 +00:00
2020-05-09 06:00:00 +01:00
nativeBuildInputs = [ installShellFiles ];
2020-10-25 21:24:00 +00:00
checkFlags = [ "--skip=test_single_huge_payload" "--skip=test_create_unix_socket" ];
2020-05-09 06:00:00 +01:00
postInstall = ''
2020-11-18 04:20:00 +00:00
for shell in bash fish zsh; do
2020-05-09 06:00:00 +01:00
$out/bin/pueue completions $shell .
done
2020-11-18 04:20:00 +00:00
installShellCompletion pueue.{bash,fish} _pueue
2020-05-09 06:00:00 +01:00
'';
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 ];
};
}