File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ lib.makeScope newScope (self: {
32
32
uwsm = callPackage ./uwsm { } ;
33
33
vgc = qt6Packages . callPackage ./vgc { } ;
34
34
watc = callPackage ./watc { } ;
35
+ willow = callPackage ./willow { } ;
35
36
wzmach = callPackage ./wzmach { } ;
36
37
xs = callPackage ./xs { } ;
37
38
} )
Original file line number Diff line number Diff line change
1
+ { lib
2
+ , buildGoModule
3
+ , fetchFromGitHub
4
+ } :
5
+
6
+ buildGoModule {
7
+ pname = "willow" ;
8
+ version = "unstable-2024-05-17" ;
9
+
10
+ src = fetchFromGitHub {
11
+ owner = "Amolith" ;
12
+ repo = "willow" ;
13
+ rev = "5219377958faf103e16f16c29b2eb82f33a4f1c4" ;
14
+ hash = "sha256-MGz+X8Az2Cqzp5SB7L/RU18m15WOIS8vnAjCJwcTQ/s=" ;
15
+ } ;
16
+
17
+ vendorHash = "sha256-DCqD9GTszw7KJ+BlEX4T1Mra/D7uAFcWsMXg73V8a7k=" ;
18
+
19
+ meta = with lib ; {
20
+ homepage = "https://github.com/Amolith/willow" ;
21
+ description = "Forge-agnostic release tracker" ;
22
+ license = with licenses ; [
23
+ mit
24
+ asl20
25
+ ] ;
26
+ maintainers = with maintainers ; [ foo-dogsquared ] ;
27
+ mainProgram = "willow" ;
28
+ platforms = platforms . unix ;
29
+ } ;
30
+
31
+ }
You can’t perform that action at this time.
0 commit comments