3
0
Fork 0
forked from mirrors/nixpkgs

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
'';
meta = {
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "https://boringssl.googlesource.com";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
platforms = platforms.all;
maintainers = [ maintainers.thoughtpolice ];
license = with licenses; [ openssl isc mit bsd3 ];
};
}