qhull: specify spdx license

This commit is contained in:
Orivej Desh 2019-09-22 20:21:27 +00:00
parent 96bd4d218d
commit 698b06dfe4
2 changed files with 6 additions and 1 deletions

View File

@ -613,6 +613,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) {
url = https://enterprise.dejacode.com/licenses/public/purdue-bsd;
};
qhull = spdx {
spdxId = "Qhull";
fullName = "Qhull License";
};
qpl = spdx {
spdxId = "QPL-1.0";
fullName = "Q Public License 1.0";

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
homepage = http://www.qhull.org/;
description = "Compute the convex hull, Delaunay triangulation, Voronoi diagram and more";
license = licenses.free;
license = licenses.qhull;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};