nixpkgs/pkgs/development/libraries/CGAL/default.nix

25 lines
656 B
Nix
Raw Normal View History

2014-01-24 23:21:54 +01:00
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
version = "4.4";
2014-01-24 23:21:54 +01:00
name = "cgal-${version}";
2014-01-24 23:21:54 +01:00
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/33526/CGAL-${version}.tar.xz";
sha256 = "1s0ylyrx74vgw6vsg6xxk4b07jrxh8pqcmxcbkx46v01nczv3ixj";
};
2014-09-19 19:56:08 +02:00
buildInputs = [ cmake boost boost.lib gmp mpfr ];
doCheck = false;
2014-01-24 23:21:54 +01:00
meta = with stdenv.lib; {
description = "Computational Geometry Algorithms Library";
homepage = "http://cgal.org/";
2014-01-24 23:21:54 +01:00
license = licenses.gpl3Plus; # some parts are GPLv3+, some are LGPLv3+
platforms = platforms.linux;
maintainers = [ maintainers.raskin ];
};
}