liboauth: use nss instead of openssl

OpenSSL support will be dropped in future releases of liboauth.
Also fix a broken .la file which previously referenced -lcrypto
without proper -L.
This commit is contained in:
Luca Bruno 2015-08-04 11:04:21 +02:00
parent d30e63727f
commit 6dd9a13603

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, nss, openssl, pkgconfig }:
{ fetchurl, stdenv, nss, nspr, pkgconfig }:
stdenv.mkDerivation rec {
@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd";
};
buildInputs = [ nss openssl ];
buildInputs = [ pkgconfig nss nspr ];
configureFlags = [ "--enable-nss" ];
meta = with stdenv.lib; {
platforms = platforms.linux;