about summary refs log tree commit diff
path: root/pkgs/development/libraries/opencsg
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-25 21:58:46 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-25 22:56:23 +0200
commit4afe65f253d1b5abcb3867a3fae6cde1f6710c12 (patch)
treee20e5382c5d3c51e5216c30796b4df5920a014f0 /pkgs/development/libraries/opencsg
parent8ff5a85c453c6463f914520b55fda5184885a8c6 (diff)
opencsg: add license
Diffstat (limited to 'pkgs/development/libraries/opencsg')
-rw-r--r--pkgs/development/libraries/opencsg/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/opencsg/default.nix b/pkgs/development/libraries/opencsg/default.nix
index 2724976c5ae8c..e0a6c6a5705e9 100644
--- a/pkgs/development/libraries/opencsg/default.nix
+++ b/pkgs/development/libraries/opencsg/default.nix
@@ -26,13 +26,12 @@ stdenv.mkDerivation rec {
     cp license.txt "$out/share/doc/opencsg"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Constructive Solid Geometry library";
     homepage = http://www.opencsg.org/;
-    platforms = with stdenv.lib.platforms;
-      linux;
-    maintainers = with stdenv.lib.maintainers; 
-      [raskin];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.raskin ];
+    license = licenses.gpl2;
   };
 }