Skip to content

Commit 7723b79

Browse files
authored
rush-parallel: init at 0.5.6 (#342875)
2 parents 9625766 + c18a1cb commit 7723b79

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildGoModule rec {
8+
pname = "rush-parallel";
9+
version = "0.5.6";
10+
11+
src = fetchFromGitHub {
12+
owner = "shenwei356";
13+
repo = "rush";
14+
rev = "v${version}";
15+
hash = "sha256-u3KGjZ5C8jDuAKE/dy4zR+EEFb35aJtj2YkwIb+kad4=";
16+
};
17+
18+
vendorHash = "sha256-zCloMhjHNkPZHYX1e1nx072IYbWHFWam4Af0l0s8a6M=";
19+
20+
ldflags = [
21+
"-s"
22+
"-w"
23+
];
24+
25+
meta = {
26+
description = "A cross-platform command-line tool for executing jobs in parallel";
27+
homepage = "https://github.com/shenwei356/rush";
28+
changelog = "https://github.com/shenwei356/rush/blob/${src.rev}/CHANGELOG.md";
29+
license = lib.licenses.mit;
30+
maintainers = with lib.maintainers; [ kranzes ];
31+
mainProgram = "rush-parallel";
32+
};
33+
}

0 commit comments

Comments
 (0)