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

27 lines
764 B
Nix
Raw Normal View History

2014-01-24 22:21:54 +00:00
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
version = "4.6.1";
2014-01-24 22:21:54 +00:00
name = "cgal-${version}";
2014-01-24 22:21:54 +00:00
src = fetchurl {
url = "https://github.com/CGAL/releases/archive/CGAL-${version}.tar.gz";
sha256 = "05vk4l62d7g6cz19q36h1an5krxdbgq1fbs5hi0x2l7blsja1z6g";
};
# note: optional component libCGAL_ImageIO would need zlib and opengl;
# there are also libCGAL_Qt{3,4} omitted ATM
2014-10-01 19:55:40 +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 ];
};
}