3
0
Fork 0
forked from mirrors/nixpkgs

ibus: hack-fix build after glib update

It isn't nice, but I didn't see any other quick way to fix this.
This commit is contained in:
Vladimír Čunát 2017-10-01 11:56:08 +02:00
parent 2daad2f6fa
commit a58120cebd
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -50,6 +50,12 @@ let
};
pyEnv = python3.buildEnv.override {
extraLibs = [ python3.pkgs.pygobject3 ];
# ImportError: No module named site
postBuild = ''
makeWrapper '${glib.dev}/bin/glib-genmarshal' "$out"/bin/glib-genmarshal \
--unset PYTHONPATH
'';
};
in stdenv.mkDerivation rec {
name = "ibus-${version}";