File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
pkgs/by-name/op/openlinkhub Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ buildGoModule ,
3+ lib ,
4+ fetchFromGitHub ,
5+ udev ,
6+ nix-update-script ,
7+ versionCheckHook ,
8+ } :
9+
10+ buildGoModule rec {
11+ pname = "openlinkhub" ;
12+ version = "0.4.4" ;
13+
14+ src = fetchFromGitHub {
15+ owner = "jurkovic-nikola" ;
16+ repo = "OpenLinkHub" ;
17+ tag = version ;
18+ hash = "sha256-MpG2RJdzDGaoXfN8YdxqXttpsjAEslN5xGdkWyDWX/c=" ;
19+ } ;
20+
21+ proxyVendor = true ;
22+
23+ vendorHash = "sha256-nDE3GUZl5OBSlhRpJBixUbWhhFMeieidNrSIzOOB/9g=" ;
24+
25+ buildInputs = [
26+ udev
27+ ] ;
28+
29+ passthru . updateScript = nix-update-script { } ;
30+
31+ meta = {
32+ homepage = "https://github.com/jurkovic-nikola/OpenLinkHub" ;
33+ platforms = lib . platforms . linux ;
34+ description = "Open source interface for iCUE LINK Hub and other Corsair AIOs, Hubs for Linux" ;
35+ maintainers = with lib . maintainers ; [ bot-wxt1221 ] ;
36+ license = lib . licenses . gpl3Only ;
37+ mainProgram = "OpenLinkHub" ;
38+ changelog = "https://github.com/jurkovic-nikola/OpenLinkHub/releases/tag/${ version } " ;
39+ } ;
40+ }
You can’t perform that action at this time.
0 commit comments