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

37 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, rustPlatform, fetchFromGitHub, installShellFiles, SystemConfiguration, libiconv }:
2020-02-02 09:20:00 +00:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2021-03-13 11:43:48 +00:00
version = "0.12.1";
2020-02-02 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2021-03-13 11:43:48 +00:00
sha256 = "sha256-wcOF34GzlB6YKISkjDgYgsaN1NmWBMIntfT23A6byx8=";
2020-02-02 09:20:00 +00:00
};
2021-03-13 11:43:48 +00:00
cargoSha256 = "sha256-7SJjtHNSabE/VqdiSwKZ/yNzk6GSMNsQLaSx/MjN5NA=";
2020-02-02 09:20:00 +00:00
2020-05-09 06:00:00 +01:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ SystemConfiguration libiconv ];
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";
changelog = "https://github.com/Nukesor/pueue/raw/v${version}/CHANGELOG.md";
2020-02-02 09:20:00 +00:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}