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";
2022-02-03 05:22:09 +00:00
version = "1.0.6";
2020-02-02 09:20:00 +00:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2022-02-03 05:22:09 +00:00
sha256 = "sha256-xEbmCVZ28CHVvI6tGCQWzMFrmVyCQ2Xmzh2Lz3tGU14=";
2020-02-02 09:20:00 +00:00
};
2022-02-03 05:22:09 +00:00
cargoSha256 = "sha256-8g/dNCm5I5/qCAPOGQ9a453DND8LoeSpX9Nb8LwUme4=";
2020-02-02 09:20:00 +00:00
2020-05-09 05:00:00 +00: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 05:00:00 +00:00
postInstall = ''
2020-11-18 04:20:00 +00:00
for shell in bash fish zsh; do
2020-05-09 05:00:00 +00:00
$out/bin/pueue completions $shell .
done
2020-11-18 04:20:00 +00:00
installShellCompletion pueue.{bash,fish} _pueue
2020-05-09 05:00:00 +00: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 ];
};
}