pinentry: fix on darwin

libcap and qt4 aren't supported on Darwin, but gtk2 is.
This commit is contained in:
Henry Till 2015-03-26 13:23:39 -04:00
parent 230182f61b
commit 5d59e78828

View File

@ -2363,8 +2363,8 @@ let
philter = callPackage ../tools/networking/philter { }; philter = callPackage ../tools/networking/philter { };
pinentry = callPackage ../tools/security/pinentry { pinentry = callPackage ../tools/security/pinentry {
gtk2 = if stdenv.isDarwin then null else gtk2; libcap = if stdenv.isDarwin then null else libcap;
qt4 = if stdenv.isDarwin then qt4 else null; qt4 = null;
}; };
pius = callPackage ../tools/security/pius { }; pius = callPackage ../tools/security/pius { };