diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-11-18 14:42:47 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-11-18 14:42:47 -0800 |
| commit | e634c4748fa47285fd50d60bea3a03cdc20d92c4 (patch) | |
| tree | 78d6b581f57e8082c7c9a8d6ae42a27acd143391 /overlays/openrgb/default.nix | |
| parent | 6117f1db0a1bde4e90ccf379f138c443aec9a9ba (diff) | |
openrgb: downgrade and patch
Diffstat (limited to 'overlays/openrgb/default.nix')
| -rw-r--r-- | overlays/openrgb/default.nix | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/overlays/openrgb/default.nix b/overlays/openrgb/default.nix index b86ad86..0e070a7 100644 --- a/overlays/openrgb/default.nix +++ b/overlays/openrgb/default.nix @@ -2,19 +2,8 @@ final: prev: { openrgb = prev.openrgb.overrideAttrs (old: { - src = prev.fetchFromGitLab { - owner = "CalcProgrammer1"; - repo = "OpenRGB"; - rev = "44c839c1160864c25170306bc1ab392333a682af"; - hash = "sha256-k/Rt8VgaZJGktKj/Lv9G/EwtFykk1n1K2Mc3unEpF48="; - }; - - postPatch = '' - patchShebangs scripts/build-udev-rules.sh - substituteInPlace scripts/build-udev-rules.sh \ - --replace /bin/chmod "${prev.coreutils}/bin/chmod" - substituteInPlace scripts/build-udev-rules.sh \ - --replace /usr/bin/env "${prev.coreutils}/bin/env" - ''; + patches = [ + ./g733.patch + ] ++ prev.openrgb.patches; }); } |