polychromatic: 0.7.3 -> 0.8.0 (#206347)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Joshua Giacone 2023-01-23 15:11:24 -08:00 committed by GitHub
parent d811234cba
commit 42e555e65b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,14 +20,14 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
name = "polychromatic"; name = "polychromatic";
version = "0.7.3"; version = "0.8.0";
format = "other"; format = "other";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "polychromatic"; owner = "polychromatic";
repo = "polychromatic"; repo = "polychromatic";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-H++kQ3Fxw56avEsSE1ctu5p0s50s0eQ+jL5zXS3AA94="; sha256 = "sha256-ym2pcGUWM5zCUx/lYs+WECj+wbyBtWnx04W/NRXNKlw=";
}; };
postPatch = '' postPatch = ''
@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
substituteInPlace scripts/build-styles.sh \ substituteInPlace scripts/build-styles.sh \
--replace '$(which sassc 2>/dev/null)' '${sassc}/bin/sassc' \ --replace '$(which sassc 2>/dev/null)' '${sassc}/bin/sassc' \
--replace '$(which sass 2>/dev/null)' '${sassc}/bin/sass' --replace '$(which sass 2>/dev/null)' '${sassc}/bin/sass'
substituteInPlace pylib/common.py \ substituteInPlace polychromatic/paths.py \
--replace "/usr/share/polychromatic" "$out/share/polychromatic" --replace "/usr/share/polychromatic" "$out/share/polychromatic"
''; '';