lol

gwenhywfar: Add OpenSSL and libgpgerror

OpenSSL is needed for gct-tool and libgpgerror for RSA key utilities
(src/crypt3/cryptkeyrsa.c).

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @goibhniu

aszlig f13873f3 3dba79e6

+11 -2
+11 -2
pkgs/development/libraries/aqbanking/gwenhywfar.nix
··· 1 - { stdenv, fetchurl, gnutls, gtk2, gtk3, libgcrypt, pkgconfig, gettext, which, qt5 1 + { stdenv, fetchurl, gnutls, openssl, libgcrypt, libgpgerror, pkgconfig, gettext 2 + , which 3 + 4 + # GUI support 5 + , gtk2, gtk3, qt5 2 6 3 7 , pluginSearchPaths ? [ 4 8 "/run/current-system/sw/lib/gwenhywfar/plugins" ··· 21 25 inherit sha256; 22 26 }; 23 27 28 + configureFlags = [ 29 + "--with-openssl-includes=${openssl.dev}/include" 30 + "--with-openssl-libs=${openssl.out}/lib" 31 + ]; 32 + 24 33 preConfigure = '' 25 34 configureFlagsArray+=("--with-guis=gtk2 gtk3 qt5") 26 35 ''; ··· 50 59 51 60 nativeBuildInputs = [ pkgconfig gettext which ]; 52 61 53 - buildInputs = [ gtk2 gtk3 qt5.qtbase gnutls libgcrypt ]; 62 + buildInputs = [ gtk2 gtk3 qt5.qtbase gnutls openssl libgcrypt libgpgerror ]; 54 63 55 64 meta = with stdenv.lib; { 56 65 description = "OS abstraction functions used by aqbanking and related tools";