opencsg: add license

This commit is contained in:
Markus Kowalewski 2018-10-25 21:58:46 +02:00
parent 8ff5a85c45
commit 4afe65f253
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -26,13 +26,12 @@ stdenv.mkDerivation rec {
cp license.txt "$out/share/doc/opencsg" cp license.txt "$out/share/doc/opencsg"
''; '';
meta = { meta = with stdenv.lib; {
description = "Constructive Solid Geometry library"; description = "Constructive Solid Geometry library";
homepage = http://www.opencsg.org/; homepage = http://www.opencsg.org/;
platforms = with stdenv.lib.platforms; platforms = platforms.linux;
linux; maintainers = [ maintainers.raskin ];
maintainers = with stdenv.lib.maintainers; license = licenses.gpl2;
[raskin];
}; };
} }