2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv
|
2023-11-16 04:20:00 +00:00
|
|
|
, fetchurl
|
2020-08-20 17:08:02 +00:00
|
|
|
, cmake
|
|
|
|
, boost
|
|
|
|
, gmp
|
|
|
|
, mpfr
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-08-20 17:08:02 +00:00
|
|
|
pname = "cgal";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "5.5.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/CGAL/cgal/releases/download/v${version}/CGAL-${version}.tar.xz";
|
|
|
|
hash = "sha256-CgT2YmkyVjKLBbq/q7XjpbfbL1pY1S48Ug350IKN3XM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# note: optional component libCGAL_ImageIO would need zlib and opengl;
|
|
|
|
# there are also libCGAL_Qt{3,4} omitted ATM
|
|
|
|
buildInputs = [ boost gmp mpfr ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
patches = [ ./cgal_path.patch ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Computational Geometry Algorithms Library";
|
|
|
|
homepage = "http://cgal.org";
|
|
|
|
license = with licenses; [ gpl3Plus lgpl3Plus];
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
};
|
|
|
|
}
|