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 10:20:00 +01:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2021-03-13 12:43:48 +01:00
version = "0.12.1";
2020-02-02 10:20:00 +01:00
src = fetchFromGitHub {
owner = "Nukesor";
repo = pname;
rev = "v${version}";
2021-03-13 12:43:48 +01:00
sha256 = "sha256-wcOF34GzlB6YKISkjDgYgsaN1NmWBMIntfT23A6byx8=";
2020-02-02 10:20:00 +01:00
};
cargoSha256 = "sha256-aW1VliL7QQm9gMeM6N+SroHlgqI3F7MX0EzcuEzcJnQ=";
2020-02-02 10:20:00 +01:00
2020-05-09 07:00:00 +02:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ SystemConfiguration libiconv ];
2020-10-25 22:24:00 +01:00
checkFlags = [ "--skip=test_single_huge_payload" "--skip=test_create_unix_socket" ];
2020-05-09 07:00:00 +02:00
postInstall = ''
2020-11-18 05:20:00 +01:00
for shell in bash fish zsh; do
2020-05-09 07:00:00 +02:00
$out/bin/pueue completions $shell .
done
2020-11-18 05:20:00 +01:00
installShellCompletion pueue.{bash,fish} _pueue
2020-05-09 07:00:00 +02:00
'';
2020-02-02 10:20:00 +01: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 10:20:00 +01:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}