boringssl: add licenses

This commit is contained in:
Markus Kowalewski 2018-09-30 11:10:34 +02:00
parent b46666a867
commit e86c84d607
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
mv ../include/openssl $out/include mv ../include/openssl $out/include
''; '';
meta = { meta = with stdenv.lib; {
description = "Free TLS/SSL implementation"; description = "Free TLS/SSL implementation";
homepage = "https://boringssl.googlesource.com"; homepage = "https://boringssl.googlesource.com";
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ maintainers.thoughtpolice ];
license = with licenses; [ openssl isc mit bsd3 ];
}; };
} }