3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/openrgb/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitLab, qmake, libusb1, hidapi, pkg-config, coreutils }:
2020-06-17 22:38:28 +01:00
mkDerivation rec {
pname = "openrgb";
2021-06-01 17:18:17 +01:00
version = "0.6";
2020-06-17 22:38:28 +01:00
2020-12-07 17:11:07 +00:00
src = fetchFromGitLab {
2020-06-17 22:38:28 +01:00
owner = "CalcProgrammer1";
repo = "OpenRGB";
rev = "release_${version}";
2021-06-01 17:18:17 +01:00
sha256 = "sha256-x/wGD39Jm/kmcTEZP3BnLXxyv/jkPOJd6mLCO0dp5wM=";
2020-06-17 22:38:28 +01:00
};
2020-08-09 01:57:13 +01:00
nativeBuildInputs = [ qmake pkg-config ];
2020-06-17 22:38:28 +01:00
buildInputs = [ libusb1 hidapi ];
installPhase = ''
runHook preInstall
2020-06-17 22:38:28 +01:00
mkdir -p $out/bin
2020-12-07 17:11:07 +00:00
cp openrgb $out/bin
substituteInPlace 60-openrgb.rules \
--replace /bin/chmod "${coreutils}/bin/chmod"
mkdir -p $out/etc/udev/rules.d
cp 60-openrgb.rules $out/etc/udev/rules.d
runHook postInstall
2020-12-07 17:11:07 +00:00
'';
2020-06-17 22:38:28 +01:00
doInstallCheck = true;
installCheckPhase = ''
2020-12-07 17:11:07 +00:00
HOME=$TMPDIR $out/bin/openrgb --help > /dev/null
2020-06-17 22:38:28 +01:00
'';
meta = with lib; {
description = "Open source RGB lighting control";
homepage = "https://gitlab.com/CalcProgrammer1/OpenRGB";
maintainers = with maintainers; [ jonringer ];
license = licenses.gpl2Plus;
2020-06-17 22:38:28 +01:00
platforms = platforms.linux;
};
}