Files
nixpkgs/pkgs/by-name/op/openlinkhub/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
953 B
Nix

{
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}";
};
}