From 395d7ff4de640944bb55dcc4cef5286e26441710 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Tue, 7 Nov 2023 12:37:15 -0500 Subject: [PATCH] vxl: change license to unfree for now While nominally under a free license, the package appears to contain files under a nonfree license which contradict the project license, and these would need to be patched out as per https://github.com/InsightSoftwareConsortium/ITK/pull/1920/files. --- pkgs/development/libraries/vxl/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix index 098dc64cf154..941e07a27e3a 100644 --- a/pkgs/development/libraries/vxl/default.nix +++ b/pkgs/development/libraries/vxl/default.nix @@ -16,7 +16,9 @@ stdenv.mkDerivation rec { meta = { description = "C++ Libraries for Computer Vision Research and Implementation"; homepage = "https://vxl.sourceforge.net/"; - license = "VXL License"; + # license appears contradictory; see https://github.com/vxl/vxl/issues/752 + # (and see https://github.com/InsightSoftwareConsortium/ITK/pull/1920/files for potential patch) + license = [ lib.licenses.unfree ]; maintainers = with lib.maintainers; [viric]; platforms = with lib.platforms; linux; };