From b72aa0e2903cc97624cb8c66d43d5bd99729cc4a Mon Sep 17 00:00:00 2001 From: Philipp Bartsch Date: Fri, 12 Jun 2026 22:50:56 +0200 Subject: [PATCH 1/3] vectorscan: make use of compound licenses --- pkgs/by-name/ve/vectorscan/package.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ve/vectorscan/package.nix b/pkgs/by-name/ve/vectorscan/package.nix index 2f7a23143f85..72262bd49747 100644 --- a/pkgs/by-name/ve/vectorscan/package.nix +++ b/pkgs/by-name/ve/vectorscan/package.nix @@ -116,11 +116,13 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.vectorcamp.gr/vectorscan/"; changelog = "https://github.com/VectorCamp/vectorscan/blob/${finalAttrs.src.rev}/CHANGELOG-vectorscan.md"; platforms = lib.platforms.unix; - license = with lib.licenses; [ - bsd3 # and - bsd2 # and - lib.licenses.boost - ]; + license = + with lib.licenses; + AND [ + bsd3 + bsd2 + lib.licenses.boost + ]; maintainers = with lib.maintainers; [ tnias vlaci From 3b2e99d335cf0df38e74c491c01ef0381784c6c0 Mon Sep 17 00:00:00 2001 From: Philipp Bartsch Date: Fri, 12 Jun 2026 22:55:07 +0200 Subject: [PATCH 2/3] python3Packages.pyperscan: make use of compound licenses --- pkgs/development/python-modules/pyperscan/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyperscan/default.nix b/pkgs/development/python-modules/pyperscan/default.nix index 29a3068ede4c..c4f9a66ecbfa 100644 --- a/pkgs/development/python-modules/pyperscan/default.nix +++ b/pkgs/development/python-modules/pyperscan/default.nix @@ -43,10 +43,12 @@ buildPythonPackage rec { homepage = "https://vlaci.github.io/pyperscan/"; changelog = "https://github.com/vlaci/pyperscan/releases/tag/${src.rev}"; platforms = lib.platforms.unix; - license = with lib.licenses; [ - asl20 # or - mit - ]; + license = + with lib.licenses; + OR [ + asl20 + mit + ]; maintainers = with lib.maintainers; [ tnias vlaci From 51c432fc5e99434790a40860d2281fcccf92e4e4 Mon Sep 17 00:00:00 2001 From: Philipp Bartsch Date: Fri, 12 Jun 2026 23:00:35 +0200 Subject: [PATCH 3/3] oniux: make use of compund licenses --- pkgs/by-name/on/oniux/package.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/on/oniux/package.nix b/pkgs/by-name/on/oniux/package.nix index 7b024b54b4ea..b7540163375b 100644 --- a/pkgs/by-name/on/oniux/package.nix +++ b/pkgs/by-name/on/oniux/package.nix @@ -30,10 +30,12 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Isolate Applications over Tor using Linux Namespaces"; maintainers = with lib.maintainers; [ tnias ]; platforms = lib.platforms.linux; - license = with lib.licenses; [ - asl20 - mit - ]; + license = + with lib.licenses; + OR [ + asl20 + mit + ]; mainProgram = "oniux"; }; })