guake: fix by setting strictDeps to false

Strict deps breaks guake.
See https://github.com/NixOS/nixpkgs/issues/59930
and https://github.com/NixOS/nixpkgs/issues/56943
This commit is contained in:
Markus Kowalewski 2019-04-21 18:15:34 +02:00
parent 64476e879b
commit 184f7f2ad8
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -14,6 +14,11 @@ in python3.pkgs.buildPythonApplication rec {
sha256 = "1j38z968ha8ij6wrgbwvr8ad930nvhybm9g7pf4s4zv6d3vln0vm";
};
# Strict deps breaks guake
# See https://github.com/NixOS/nixpkgs/issues/59930
# and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
nativeBuildInputs = [ gettext gobject-introspection wrapGAppsHook python3.pkgs.pip glibcLocales ];
buildInputs = [ gtk3 keybinder3 libnotify python3 vte ];