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

25 lines
646 B
Nix
Raw Normal View History

2014-01-24 22:21:54 +00:00
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
2013-12-18 12:51:01 +00:00
version = "4.3";
2014-01-24 22:21:54 +00:00
name = "cgal-${version}";
2014-01-24 22:21:54 +00:00
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/32995/CGAL-${version}.tar.xz";
sha256 = "015vw57dmy43bf63mg3916cgcsbv9dahwv24bnmiajyanj2mhiyc";
};
2014-01-24 22:21:54 +00:00
buildInputs = [ cmake boost gmp mpfr ];
doCheck = false;
2014-01-24 22:21:54 +00:00
meta = with stdenv.lib; {
description = "Computational Geometry Algorithms Library";
homepage = "http://cgal.org/";
2014-01-24 22:21:54 +00:00
license = licenses.gpl3Plus; # some parts are GPLv3+, some are LGPLv3+
platforms = platforms.linux;
maintainers = [ maintainers.raskin ];
};
}