mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
34 lines
808 B
Nix
34 lines
808 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, cmake
|
|
, boost
|
|
, gmp
|
|
, mpfr
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cgal";
|
|
version = "5.5.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/CGAL/cgal/releases/download/v${version}/CGAL-${version}.tar.xz";
|
|
hash = "sha256-CgT2YmkyVjKLBbq/q7XjpbfbL1pY1S48Ug350IKN3XM=";
|
|
};
|
|
|
|
# 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 ];
|
|
|
|
patches = [ ./cgal_path.patch ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Computational Geometry Algorithms Library";
|
|
homepage = "http://cgal.org";
|
|
license = with licenses; [ gpl3Plus lgpl3Plus];
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.raskin ];
|
|
};
|
|
}
|