mysql: add licenses

This commit is contained in:
Markus Kowalewski 2018-11-14 23:10:06 +01:00
parent b868f24475
commit b9c5598b3c
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
2 changed files with 13 additions and 4 deletions

View File

@ -69,9 +69,14 @@ self = stdenv.mkDerivation rec {
mysqlVersion = "5.5"; mysqlVersion = "5.5";
}; };
meta = { meta = with stdenv.lib; {
homepage = https://www.mysql.com/; homepage = https://www.mysql.com/;
description = "The world's most popular open source database"; description = "The world's most popular open source database";
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
# See https://downloads.mysql.com/docs/licenses/mysqld-5.5-gpl-en.pdf
license = with licenses; [
artistic1 bsd0 bsd2 bsd3 bsdOriginal
gpl2 lgpl2 lgpl21 mit publicDomain licenses.zlib
];
}; };
}; in self }; in self

View File

@ -75,9 +75,13 @@ self = stdenv.mkDerivation rec {
mysqlVersion = "5.7"; mysqlVersion = "5.7";
}; };
meta = { meta = with stdenv.lib; {
homepage = https://www.mysql.com/; homepage = https://www.mysql.com/;
description = "The world's most popular open source database"; description = "The world's most popular open source database";
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
license = with licenses; [
artistic1 bsd0 bsd2 bsd3 bsdOriginal
gpl2 lgpl2 lgpl21 mit publicDomain licenses.zlib
];
}; };
}; in self }; in self