about summary refs log tree commit diff
path: root/pkgs/applications/misc/polychromatic
diff options
context:
space:
mode:
authorJoshua Giacone <71910145+jrgiacone@users.noreply.github.com>2023-01-23 15:11:24 -0800
committerGitHub <noreply@github.com>2023-01-24 00:11:24 +0100
commit42e555e65bdd9d6a709a4b96d90e6613cbbe3214 (patch)
tree091c1e0dcee10f2223b01387729dba7f9ba678ad /pkgs/applications/misc/polychromatic
parentd811234cbaf359716654e49719b8638c45829655 (diff)
polychromatic: 0.7.3 -> 0.8.0 (#206347)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/misc/polychromatic')
-rw-r--r--pkgs/applications/misc/polychromatic/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/polychromatic/default.nix b/pkgs/applications/misc/polychromatic/default.nix
index 42143cbc9772d..f940f5a4af803 100644
--- a/pkgs/applications/misc/polychromatic/default.nix
+++ b/pkgs/applications/misc/polychromatic/default.nix
@@ -20,14 +20,14 @@
 
 python3Packages.buildPythonApplication rec {
   name = "polychromatic";
-  version = "0.7.3";
+  version = "0.8.0";
   format = "other";
 
   src = fetchFromGitHub {
     owner = "polychromatic";
     repo = "polychromatic";
     rev = "v${version}";
-    sha256 = "sha256-H++kQ3Fxw56avEsSE1ctu5p0s50s0eQ+jL5zXS3AA94=";
+    sha256 = "sha256-ym2pcGUWM5zCUx/lYs+WECj+wbyBtWnx04W/NRXNKlw=";
   };
 
   postPatch = ''
@@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
     substituteInPlace scripts/build-styles.sh \
       --replace '$(which sassc 2>/dev/null)' '${sassc}/bin/sassc' \
       --replace '$(which sass 2>/dev/null)' '${sassc}/bin/sass'
-    substituteInPlace pylib/common.py \
+    substituteInPlace polychromatic/paths.py \
       --replace "/usr/share/polychromatic" "$out/share/polychromatic"
   '';