kupfer: fix broken build
This commit is contained in:
parent
d3a3ea0257
commit
545af899c2
@ -30,6 +30,10 @@ buildPythonApplication rec {
|
|||||||
buildInputs = [ hicolor-icon-theme docutils libwnck3 keybinder3 ];
|
buildInputs = [ hicolor-icon-theme docutils libwnck3 keybinder3 ];
|
||||||
propagatedBuildInputs = [ pygobject3 gtk3 pyxdg dbus-python pycairo ];
|
propagatedBuildInputs = [ pygobject3 gtk3 pyxdg dbus-python pycairo ];
|
||||||
|
|
||||||
|
# without strictDeps kupfer fails to build: Could not find the python module 'gi.repository.Gtk'
|
||||||
|
# see https://github.com/NixOS/nixpkgs/issues/56943 for details
|
||||||
|
strictDeps = false;
|
||||||
|
|
||||||
postInstall = let
|
postInstall = let
|
||||||
pythonPath = (stdenv.lib.concatMapStringsSep ":"
|
pythonPath = (stdenv.lib.concatMapStringsSep ":"
|
||||||
(m: "${m}/lib/${python.libPrefix}/site-packages")
|
(m: "${m}/lib/${python.libPrefix}/site-packages")
|
||||||
|
@ -18433,7 +18433,11 @@ in
|
|||||||
|
|
||||||
kubetail = callPackage ../applications/networking/cluster/kubetail { } ;
|
kubetail = callPackage ../applications/networking/cluster/kubetail { } ;
|
||||||
|
|
||||||
kupfer = callPackage ../applications/misc/kupfer { };
|
kupfer = callPackage ../applications/misc/kupfer {
|
||||||
|
# using python36 as there appears to be a waf issue with python37
|
||||||
|
# see https://github.com/NixOS/nixpkgs/issues/60498
|
||||||
|
python3Packages = python36Packages;
|
||||||
|
};
|
||||||
|
|
||||||
lame = callPackage ../development/libraries/lame { };
|
lame = callPackage ../development/libraries/lame { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user