lib.licenses: replace qwt with qwtException

This commit is contained in:
jopejoe1
2025-09-01 21:40:13 +02:00
parent 7e3c021be1
commit 33f92fb565
3 changed files with 11 additions and 5 deletions
+3 -3
View File
@@ -1170,9 +1170,9 @@ lib.mapAttrs mkLicense (
fullName = "Q Public License 1.0";
};
qwt = {
fullName = "Qwt License, Version 1.0";
url = "https://qwt.sourceforge.io/qwtlicense.html";
qwtException = {
spdxId = "Qwt-exception-1.0";
fullName = "Qwt exception 1.0";
};
ruby = {
+4 -1
View File
@@ -36,7 +36,10 @@ stdenv.mkDerivation rec {
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
license = licenses.qwt;
license = with lib.licenses; [
lgpl21Only
qwtException
];
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
+4 -1
View File
@@ -42,7 +42,10 @@ stdenv.mkDerivation rec {
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
license = lib.licenses.qwt;
license = with lib.licenses; [
lgpl21Only
qwtException
];
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};