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
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
libsForQt5,
|
|
openrgb,
|
|
glib,
|
|
libgtop,
|
|
lm_sensors,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "openrgb-plugin-hardwaresync";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "OpenRGBDevelopers";
|
|
repo = "OpenRGBHardwareSyncPlugin";
|
|
rev = "release_${finalAttrs.version}";
|
|
hash = "sha256-3sQFiqmXhuavce/6v3XBpp6PAduY7t440nXfbfCX9a0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Use the source of openrgb from nixpkgs instead of the submodule
|
|
rmdir OpenRGB
|
|
ln -s ${openrgb.src} OpenRGB
|
|
# Remove prebuilt stuff
|
|
rm -r dependencies/lhwm-cpp-wrapper
|
|
'';
|
|
|
|
buildInputs = with libsForQt5; [
|
|
qtbase
|
|
glib
|
|
libgtop
|
|
lm_sensors
|
|
];
|
|
|
|
nativeBuildInputs = with libsForQt5; [
|
|
qmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/OpenRGBDevelopers/OpenRGBHardwareSyncPlugin";
|
|
description = "Sync your ARGB devices colors with hardware measures (CPU, GPU, fan speed, etc...)";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|