1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

terminator: fix missing gobject bindings

See: https://github.com/NixOS/nixpkgs/issues/56943
This commit is contained in:
Boris Babic 2019-03-27 17:50:22 +01:00
parent 07b42ccf2d
commit 34898d58ca

View file

@ -12,7 +12,9 @@ python2.pkgs.buildPythonApplication rec {
}; };
nativeBuildInputs = [ file intltool wrapGAppsHook gobject-introspection ]; nativeBuildInputs = [ file intltool wrapGAppsHook gobject-introspection ];
buildInputs = [ gtk3 vte libnotify keybinder3 ]; buildInputs = [ gtk3 vte libnotify keybinder3
gobject-introspection # Temporary fix, see https://github.com/NixOS/nixpkgs/issues/56943
];
propagatedBuildInputs = with python2.pkgs; [ pygobject3 psutil pycairo ]; propagatedBuildInputs = with python2.pkgs; [ pygobject3 psutil pycairo ];
postPatch = '' postPatch = ''