lib.licenses: replace qwt with qwtException

jopejoe1 33f92fb5 7e3c021b

Changed files
+11 -5
lib
pkgs
development
libraries
+3 -3
lib/licenses.nix
···
fullName = "Q Public License 1.0";
};
-
qwt = {
-
fullName = "Qwt License, Version 1.0";
-
url = "https://qwt.sourceforge.io/qwtlicense.html";
};
ruby = {
···
fullName = "Q Public License 1.0";
};
+
qwtException = {
+
spdxId = "Qwt-exception-1.0";
+
fullName = "Qwt exception 1.0";
};
ruby = {
+4 -1
pkgs/development/libraries/qwt/6_1.nix
···
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
-
license = licenses.qwt;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
···
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
+
license = with lib.licenses; [
+
lgpl21Only
+
qwtException
+
];
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
+4 -1
pkgs/development/libraries/qwt/default.nix
···
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
-
license = lib.licenses.qwt;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
···
description = "Qt widgets for technical applications";
homepage = "http://qwt.sourceforge.net/";
# LGPL 2.1 plus a few exceptions (more liberal)
+
license = with lib.licenses; [
+
lgpl21Only
+
qwtException
+
];
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};