Merge pull request #270497 from Luflosi/fix-teeworlds-license

teeworlds: fix meta.license
This commit is contained in:
Weijia Wang 2023-11-30 16:42:22 +01:00 committed by GitHub
commit 8abf7c0499
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,18 @@ stdenv.mkDerivation rec {
'';
homepage = "https://teeworlds.com/";
license = "BSD-style, see `license.txt'";
license = with lib.licenses; [
# See https://github.com/teeworlds/teeworlds/blob/master/license.txt
lib.licenses.zlib # Main license
cc-by-sa-30 # All content under 'datasrc' except the fonts
ofl # datasrc/fonts/SourceHanSans.ttc
free # datasrc/fonts/DejaVuSans.ttf
bsd2 # src/engine/external/json-parser/
bsd3 # src/engine/external/wavpack
# zlib src/engine/external/md5/
# zlib src/engine/external/pnglite/
# zlib src/engine/external/zlib/
];
maintainers = with lib.maintainers; [ astsmtl Luflosi ];
platforms = lib.platforms.unix;
};