mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
gnupg: Use pintenty-mac on Darwin by default
This commit is contained in:
parent
213dc21443
commit
22f2f6e045
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user