11 rustPlatform.buildRustPackage rec {
15 src = fetchFromGitHub {
19 hash = "sha256-kKu/+F+zK0UyRHGkrZdD8alvsQTZFHhTqYK2phxo/ZA=";
22 cargoHash = "sha256-KwIGJiCGcFEKuloVtJr0GQxoFQVt/OHyJ/YCp4bCSGc=";
26 ] ++ lib.optionals stdenv.isDarwin [
27 rustPlatform.bindgenHook
30 buildInputs = lib.optionals stdenv.isDarwin [
38 "--skip=test_single_huge_payload"
39 "--skip=test_create_unix_socket"
43 for shell in bash fish zsh; do
44 $out/bin/pueue completions $shell .
46 installShellCompletion pueue.{bash,fish} _pueue
50 homepage = "https://github.com/Nukesor/pueue";
51 description = "A daemon for managing long running shell commands";
53 Pueue is a command-line task management tool for sequential and parallel
54 execution of long-running tasks.
56 Simply put, it's a tool that processes a queue of shell commands. On top
57 of that, there are a lot of convenient features and abstractions.
59 Since Pueue is not bound to any terminal, you can control your tasks from
60 any terminal on the same machine. The queue will be continuously
61 processed, even if you no longer have any active ssh sessions.
63 changelog = "https://github.com/Nukesor/pueue/blob/v${version}/CHANGELOG.md";
64 license = licenses.mit;
65 maintainers = with maintainers; [ marsam ];