From 6821c758f59aa0453ae186b52334d5898a26d744 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 4 May 2026 13:02:33 +0200 Subject: [PATCH 1/2] lib.licenses: add bsd3Modification --- lib/licenses/licenses.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/licenses/licenses.nix b/lib/licenses/licenses.nix index 12301021e9c8..5d86e5f90ac2 100644 --- a/lib/licenses/licenses.nix +++ b/lib/licenses/licenses.nix @@ -263,6 +263,11 @@ lib.mapAttrs mkLicense ( fullName = "Lawrence Berkeley National Labs BSD variant license"; }; + bsd3Modification = { + spdxId = "BSD-3-Clause-Modification"; + fullName = "BSD 3-Clause Modification"; + }; + bsd3ClauseTso = { spdxId = "BSD-3-Clause-Tso"; fullName = "BSD 3-Clause Tso variant"; From e604511aae073560ed541b33c38f205f5b5952f3 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 4 May 2026 13:03:36 +0200 Subject: [PATCH 2/2] python3Packages.peppercorn: set license source: https://github.com/Pylons/peppercorn/blob/master/LICENSE.txt --- pkgs/development/python-modules/peppercorn/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/peppercorn/default.nix b/pkgs/development/python-modules/peppercorn/default.nix index e93f7e5ef44c..a47eb71111ef 100644 --- a/pkgs/development/python-modules/peppercorn/default.nix +++ b/pkgs/development/python-modules/peppercorn/default.nix @@ -19,5 +19,6 @@ buildPythonPackage rec { homepage = "https://docs.pylonsproject.org/projects/peppercorn/en/latest/"; maintainers = [ ]; platforms = lib.platforms.all; + license = lib.licenses.bsd3Modification; }; }