nixos/no-x-libs.nix: override pinentry directly

This is more specific and we avoid having gtk or qt libraries come in at all.
This commit is contained in:
Matthew Bauer 2019-02-27 23:53:50 -05:00 committed by GitHub
parent fa5ab50753
commit 5dee926eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ with lib;
networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; };
networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; };
networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
pinentry = super.pinentry_ncurses;
pinentry = super.pinentry.override { gtk2 = null; qt = null; };
gobject-introspection = super.gobject-introspection.override { x11Support = false; };
}));
};