1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "19ypflbayi5l0mb8yw7w0a4bq9a3w8nl9jsxapp9m3xggzmsvrxx";
14 cargoHash = "sha256-jIL7ZFzRMQuGLmMatGegkYRYctlsl3RRUfChgaIhWHg=";
17 description = "Tool to parallelize shell commands";
18 mainProgram = "async";
20 `async` is a tool to run shell commands in parallel and is designed to be
21 able to quickly parallelize shell scripts with minimal changes. It was
22 inspired by GNU Parallel, with the main difference being that async
23 retains state between commands by running a server in the background.
25 homepage = "https://github.com/ctbur/async";
26 license = licenses.gpl3Plus;
27 maintainers = with maintainers; [ minijackson ];