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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.6 KiB
Nix
Raw Normal View History

2022-08-07 05:11:41 +02:00
{ lib
, stdenv
, fetchFromGitHub
, SystemConfiguration
, installShellFiles
, libiconv
, rustPlatform
}:
2020-02-02 10:20:00 +01:00
rustPlatform.buildRustPackage rec {
pname = "pueue";
2022-08-07 05:11:41 +02:00
version = "2.1.0";
2020-02-02 10:20:00 +01:00
src = fetchFromGitHub {
owner = "Nukesor";
2022-08-07 05:11:41 +02:00
repo = "pueue";
2020-02-02 10:20:00 +01:00
rev = "v${version}";
2022-08-07 05:11:41 +02:00
hash = "sha256-xUTkjj/PdlgDEp2VMwBuRtF/9iGGiN4FZizdOdcbTag=";
2020-02-02 10:20:00 +01:00
};
2022-08-07 05:11:41 +02:00
cargoSha256 = "sha256-7VdPu+9RYoj4Xfb3J6GLOji7Fqxkk+Fswi4C4q33+jk=";
2020-02-02 10:20:00 +01:00
2020-05-09 07:00:00 +02:00
nativeBuildInputs = [ installShellFiles ];
2022-08-07 05:11:41 +02:00
buildInputs = lib.optionals stdenv.isDarwin [
SystemConfiguration
libiconv
];
2022-08-07 05:11:41 +02:00
checkFlags = [
"--test client_tests"
"--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; {
homepage = "https://github.com/Nukesor/pueue";
2022-08-07 05:11:41 +02:00
description = "A daemon for managing long running shell commands";
longDescription = ''
Pueue is a command-line task management tool for sequential and parallel
execution of long-running tasks.
Simply put, it's a tool that processes a queue of shell commands. On top
of that, there are a lot of convenient features and abstractions.
Since Pueue is not bound to any terminal, you can control your tasks from
any terminal on the same machine. The queue will be continuously
processed, even if you no longer have any active ssh sessions.
'';
changelog = "https://github.com/Nukesor/pueue/raw/v${version}/CHANGELOG.md";
2020-02-02 10:20:00 +01:00
license = licenses.mit;
2022-08-07 05:11:41 +02:00
maintainers = with maintainers; [ marsam ];
2020-02-02 10:20:00 +01:00
};
}