pinentry: Fix for darwin

This commit is contained in:
William A. Kennington III
2015-03-25 16:19:02 -07:00
parent ba4330a89e
commit 70a8bfbcd5
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ let
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
mkEnable = mkFlag "enable" "disable";
mkWith = mkFlag "with" "without";
hasX = gtk != null || qt4 != null;
hasX = gtk2 != null || qt4 != null;
in
with stdenv.lib;
stdenv.mkDerivation rec {