mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
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.
(cherry picked from commit b34a891295)
This commit is contained in:
committed by
Graham Christensen
parent
5de8c52add
commit
bce83c7e02
@@ -7,8 +7,10 @@ stdenv.mkDerivation rec {
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig intltool gnupg gobjectIntrospection libxslt
|
||||
buildInputs = let
|
||||
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
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user