We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent dca3146 commit 47f25faCopy full SHA for 47f25fa
pkgs/applications/misc/redshift/default.nix
@@ -41,7 +41,10 @@ stdenv.mkDerivation rec {
41
pythonPath = [ pygobject3 pyxdg ];
42
43
preConfigure = "./bootstrap";
44
- postFixup = "wrapPythonPrograms";
+ postFixup = ''
45
+ wrapPythonPrograms
46
+ rm "$out/share/icons/hicolor/icon-theme.cache"
47
+ '';
48
49
enableParallelBuilding = true;
50
pkgs/applications/networking/newsreaders/liferea/default.nix
@@ -28,6 +28,7 @@ in stdenv.mkDerivation rec {
28
pythonPath = with python3Packages; [ pygobject3 pycairo ];
29
30
preFixup = ''
31
32
buildPythonPath "$out $pythonPath"
33
gappsWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
34
'';
FWIW hicolor_icon_theme has a setup hook which does this automatically.
hicolor_icon_theme
Yes, I know, but it seemed strange to add dependency on the theme only to get the hook :-)
Yeah, I checked the theme's setup hook and it seems it doesn't do much else useful -- it was a kneejerk autoreconfTool-like reaction ^_^"
autoreconfTool
3 commit comments
abbradar commentedon Feb 19, 2018
FWIW
hicolor_icon_theme
has a setup hook which does this automatically.vcunat commentedon Feb 19, 2018
Yes, I know, but it seemed strange to add dependency on the theme only to get the hook :-)
abbradar commentedon Feb 19, 2018
Yeah, I checked the theme's setup hook and it seems it doesn't do much else useful -- it was a kneejerk
autoreconfTool
-like reaction ^_^"