ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / as / async / package.nix
blobdd2ea5205335c09b7275617a24caf5eee2916bc8
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "async";
5   version = "0.1.1";
7   src = fetchFromGitHub {
8     owner = "ctbur";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "19ypflbayi5l0mb8yw7w0a4bq9a3w8nl9jsxapp9m3xggzmsvrxx";
12   };
14   cargoHash = "sha256-jIL7ZFzRMQuGLmMatGegkYRYctlsl3RRUfChgaIhWHg=";
16   meta = with lib; {
17     description = "Tool to parallelize shell commands";
18     mainProgram = "async";
19     longDescription = ''
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.
24       '';
25     homepage = "https://github.com/ctbur/async";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ minijackson ];
28   };