From acc3d57d78526fcf07e8d312f7d2da42889ed5e7 Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 21 Apr 2026 12:52:45 +0200 Subject: [PATCH] python3Packages.pocketsphinx: make use of compound licenses --- .../python-modules/pocketsphinx/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pocketsphinx/default.nix b/pkgs/development/python-modules/pocketsphinx/default.nix index c532ea90bb5b..2d907d7e3e44 100644 --- a/pkgs/development/python-modules/pocketsphinx/default.nix +++ b/pkgs/development/python-modules/pocketsphinx/default.nix @@ -44,11 +44,13 @@ buildPythonPackage rec { description = "Small speech recognizer"; homepage = "https://github.com/cmusphinx/pocketsphinx"; changelog = "https://github.com/cmusphinx/pocketsphinx/blob/v${version}/NEWS"; - license = with lib.licenses; [ - bsd2 - bsd3 - mit - ]; + license = + with lib.licenses; + AND [ + bsd2 + bsd3 + mit + ]; maintainers = with lib.maintainers; [ jopejoe1 ]; }; }