1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00

Merge pull request #153113 from Steven0351/pinentry-darwin

pinentry: remove qt for x86_64-darwin due to build issues with qt
This commit is contained in:
Dmitry Kalinkin 2022-01-07 01:48:52 -05:00 committed by GitHub
commit a48caf2749
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
, ncurses, gtk2, gcr, libcap, libsecret
, enabledFlavors ? [ "curses" "tty" "gtk2" "emacs" ]
++ lib.optionals stdenv.isLinux [ "gnome3" ]
++ lib.optionals (stdenv.hostPlatform.system != "aarch64-darwin") [ "qt" ]
++ lib.optionals (!stdenv.isDarwin) [ "qt" ]
}:
with lib;