kupfer: fix broken build

This commit is contained in:
Aaron Andersen 2019-05-04 08:11:12 -04:00
parent d3a3ea0257
commit 545af899c2
2 changed files with 9 additions and 1 deletions

View File

@ -30,6 +30,10 @@ buildPythonApplication rec {
buildInputs = [ hicolor-icon-theme docutils libwnck3 keybinder3 ];
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
pythonPath = (stdenv.lib.concatMapStringsSep ":"
(m: "${m}/lib/${python.libPrefix}/site-packages")

View File

@ -18433,7 +18433,11 @@ in
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 { };