Skip to content

Commit 01463b1

Browse files
authored
openlinkhub: init at 0.4.3 (#369358)
2 parents f3142a4 + 3c321b3 commit 01463b1

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
}

0 commit comments

Comments
 (0)