Skip to content

Commit

Permalink
gnupg: Use pintenty-mac on Darwin by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kirelagin committed Oct 28, 2016
1 parent 213dc21 commit 22f2f6e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -1845,8 +1845,12 @@ in
gnupg1orig = callPackage ../tools/security/gnupg/1.nix { };
gnupg1compat = callPackage ../tools/security/gnupg/1compat.nix { };
gnupg1 = gnupg1compat; # use config.packageOverrides if you prefer original gnupg1
gnupg20 = callPackage ../tools/security/gnupg/20.nix { };
gnupg21 = callPackage ../tools/security/gnupg/21.nix { };
gnupg20 = callPackage ../tools/security/gnupg/20.nix {
pinentry = if stdenv.isDarwin then pinentry_mac else pinentry;
};
gnupg21 = callPackage ../tools/security/gnupg/21.nix {
pinentry = if stdenv.isDarwin then pinentry_mac else pinentry;
};
gnupg = gnupg21;

gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt4; };
Expand Down

0 comments on commit 22f2f6e

Please sign in to comment.