gnome3.gcr: prevent dependency cycle
When overriding gnupg to uss pinentry gnome3 frontend, there is a dependency cycle: gnupg → pinentry_gnome → gcr → gnupg This commit overrides the gnupg required by gcr to not build GUI.
This commit is contained in:
parent
feddf1b278
commit
b34a891295
@ -7,8 +7,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = let
|
||||||
pkgconfig intltool gnupg gobjectIntrospection libxslt
|
gpg = gnupg.override { guiSupport = false; }; # prevent build cycle with pinentry_gnome
|
||||||
|
in [
|
||||||
|
pkgconfig intltool gpg gobjectIntrospection libxslt
|
||||||
libgcrypt libtasn1 dbus_glib pango gdk_pixbuf atk makeWrapper vala_0_32
|
libgcrypt libtasn1 dbus_glib pango gdk_pixbuf atk makeWrapper vala_0_32
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user