summary refs log tree commit diff
path: root/pkgs/development/libraries/CGAL/default.nix
diff options
context:
space:
mode:
authorvbgl <vbgl@users.noreply.github.com>2017-03-11 06:49:31 +0000
committerGitHub <noreply@github.com>2017-03-11 06:49:31 +0000
commitcef420bd611a2e8da3cc39a061c8a575b8f0702a (patch)
tree3d3e4a9caf4eadd12050c2892775bd23302b573b /pkgs/development/libraries/CGAL/default.nix
parent0a72e457cca89e0e5d62b069c09bb426941e18ef (diff)
downloadnixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar.gz
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar.bz2
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar.lz
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar.xz
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.tar.zst
nixpkgs-cef420bd611a2e8da3cc39a061c8a575b8f0702a.zip
cgal: fix typo in license
Diffstat (limited to 'pkgs/development/libraries/CGAL/default.nix')
-rw-r--r--pkgs/development/libraries/CGAL/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix
index dc3909f6649..e4eb8d3ab2e 100644
--- a/pkgs/development/libraries/CGAL/default.nix
+++ b/pkgs/development/libraries/CGAL/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr, mesa_glu }:
+{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr }:
 
 stdenv.mkDerivation rec {
   version = "4.9";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Computational Geometry Algorithms Library";
     homepage = http://cgal.org;
-    license = with licenses; [ gpl3Plus lglp3Plus];
+    license = with licenses; [ gpl3Plus lgpl3Plus];
     platforms = platforms.all;
     maintainers = [ maintainers.raskin ];
   };