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-02-11 14:02:14 -08:00
version = "0.12.0";
2020-02-02 01:20:00 -08:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2021-02-11 14:02:14 -08:00
sha256 = "sha256-yOUVDq/wRY35ZQjQVwTLYHKukkKpoggN51wBDdZnhI4=";
2020-02-02 01:20:00 -08:00
};
2021-02-11 14:02:14 -08:00
cargoSha256 = "sha256-56jJ8IjxWTBlaDd1CVit4RP659Mgw2j2wMWcSDYVihM=";
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 ];
};
}