File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
pkgs/by-name/ru/rush-parallel Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments