From 4c475554d99c8ce39c85e8584e80afc8cb7d428b Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 27 Aug 2025 23:34:44 +0200 Subject: [PATCH] stb: switch license to mit or unlicense https://github.com/nothings/stb/blob/master/LICENSE --- pkgs/by-name/st/stb/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/st/stb/package.nix b/pkgs/by-name/st/stb/package.nix index 1ecd89a52db9..881eff8b8bc1 100644 --- a/pkgs/by-name/st/stb/package.nix +++ b/pkgs/by-name/st/stb/package.nix @@ -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 = [ ]; };