stb: switch license to mit or unlicense

https://github.com/nothings/stb/blob/master/LICENSE
This commit is contained in:
jopejoe1
2025-08-27 23:34:44 +02:00
parent 290a166e06
commit 4c475554d9
+5 -1
View File
@@ -44,7 +44,11 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Single-file public domain libraries for C/C++";
homepage = "https://github.com/nothings/stb";
license = licenses.publicDomain;
license = with licenses; [
mit
# OR
unlicense
];
platforms = platforms.all;
maintainers = [ ];
};