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:
parent
d30e63727f
commit
6dd9a13603
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue