Merge pull request #45282 from markuskowa/lics-2

Add licenses
This commit is contained in:
Jörg Thalheim
2018-08-19 09:03:31 +01:00
committed by GitHub
19 changed files with 59 additions and 33 deletions

View File

@@ -152,6 +152,7 @@ let
meta = {
homepage = https://www.perl.org/;
description = "The standard implementation of the Perl 5 programmming language";
license = licenses.artistic1;
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
};

View File

@@ -27,6 +27,7 @@ let
meta = with lib; {
description = "Free TLS/SSL implementation";
homepage = "https://www.libressl.org";
license = with licenses; [ publicDomain bsdOriginal bsd0 bsd3 gpl3 isc ];
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};

View File

@@ -108,9 +108,10 @@ in stdenv.mkDerivation rec {
rm -f "$out"/lib/*.a
'';
meta = {
meta = with stdenv.lib; {
homepage = https://developer.mozilla.org/en-US/docs/NSS;
description = "A set of libraries for development of security-enabled client and server applications";
platforms = stdenv.lib.platforms.all;
license = licenses.mpl20;
platforms = platforms.all;
};
}

View File

@@ -51,6 +51,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://www.openldap.org/;
description = "An open source implementation of the Lightweight Directory Access Protocol";
license = licenses.openldap;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};

View File

@@ -107,11 +107,12 @@ let
fi
'';
meta = {
meta = with stdenv.lib; {
homepage = https://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.peti ];
license = licenses.openssl;
platforms = platforms.all;
maintainers = [ maintainers.peti ];
priority = 10; # resolves collision with man-pages
};
};

View File

@@ -83,6 +83,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/polkit;
description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ ];
};