From aac795740f935b0628d1ed1e74a0528be5216ded Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 6 May 2026 10:50:56 +0200 Subject: [PATCH 1/2] lib.licenses: add w3c-19980720 --- lib/licenses/licenses.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/licenses/licenses.nix b/lib/licenses/licenses.nix index fbc915a6ce5b..8e40dacdbeb3 100644 --- a/lib/licenses/licenses.nix +++ b/lib/licenses/licenses.nix @@ -1560,6 +1560,11 @@ lib.mapAttrs mkLicense ( fullName = "W3C Software Notice and License"; }; + w3c-19980720 = { + spdxId = "W3C-19980720"; + fullName = "W3C Software Notice and License (1998-07-20)"; + }; + wadalab = { fullName = "Wadalab Font License"; url = "https://fedoraproject.org/wiki/Licensing:Wadalab?rd=Licensing/Wadalab"; From c19401508b97df2c57c03d51fea33d39851c67ab Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 6 May 2026 11:07:13 +0200 Subject: [PATCH 2/2] xhtml1: set license source: https://www.w3.org/Consortium/Legal/copyright-software-19980720.html --- pkgs/by-name/xh/xhtml1/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/xh/xhtml1/package.nix b/pkgs/by-name/xh/xhtml1/package.nix index 4d13bd1624dc..020abcab5419 100644 --- a/pkgs/by-name/xh/xhtml1/package.nix +++ b/pkgs/by-name/xh/xhtml1/package.nix @@ -33,5 +33,6 @@ stdenv.mkDerivation { homepage = "https://www.w3.org/TR/xhtml1/"; description = "DTDs for XHTML 1.0, the Extensible HyperText Markup Language"; platforms = lib.platforms.unix; + license = lib.licenses.w3c-19980720; }; }