Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
953 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildGoModule,
lib,
fetchFromGitHub,
udev,
nix-update-script,
versionCheckHook,
}:
buildGoModule rec {
pname = "openlinkhub";
version = "0.6.5";
src = fetchFromGitHub {
owner = "jurkovic-nikola";
repo = "OpenLinkHub";
tag = version;
hash = "sha256-ouSk+yi5DEeZEUNQsy2UpRi80lxlXnRFyjeP+vd/Yl0=";
};
proxyVendor = true;
vendorHash = "sha256-xpIaQzl2jrWRIUe/1woODKLlwxQrdlCLkIk0qmWs7m0=";
buildInputs = [
udev
];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/jurkovic-nikola/OpenLinkHub";
platforms = lib.platforms.linux;
description = "Open source interface for iCUE LINK Hub and other Corsair AIOs, Hubs for Linux";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
license = lib.licenses.gpl3Only;
mainProgram = "OpenLinkHub";
changelog = "https://github.com/jurkovic-nikola/OpenLinkHub/releases/tag/${version}";
};
}