844bfc605a
It was broken by cmake updates (between 3.2.2 and 3.3.1). I chose the github tarballs because they have a predictable URL, although they're much larger due to not supporting xz. /cc maintainer @7c6f434c.
25 lines
651 B
Nix
25 lines
651 B
Nix
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.6.1";
|
|
|
|
name = "cgal-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/CGAL/releases/archive/releases/CGAL-${version}.tar.gz";
|
|
sha256 = "09ph5qi7ixbkk3jssq3pdjf2nyw91s73dizi2mkx6brhrzd1zd5y";
|
|
};
|
|
|
|
buildInputs = [ cmake boost gmp mpfr ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Computational Geometry Algorithms Library";
|
|
homepage = "http://cgal.org/";
|
|
license = licenses.gpl3Plus; # some parts are GPLv3+, some are LGPLv3+
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.raskin ];
|
|
};
|
|
}
|