summary refs log tree commit diff
path: root/pkgs/development/libraries/CGAL/default.nix
blob: 0b65fcba0cb3b3b2e3bbc501cd19d58a09a98f96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{stdenv, fetchurl, cmake, boost, gmp, mpfr
  }:

stdenv.mkDerivation rec {
  version = "4.3";
  name = "cgal-${version}";
  src = fetchurl {
    url = "https://gforge.inria.fr/frs/download.php/29125/CGAL-${version}.tar.gz";
    sha256 = "193vjhzlf7f2kw6dbg5yw8v0izdvmnrylqzqhw92vml7jjnr8494";
  };

  buildInputs = [cmake boost gmp mpfr ];

  doCheck = false;

  meta = {
    description = "Computational Geometry Algorithms Library";
    homepage = "http://cgal.org/";
    platforms = with stdenv.lib.platforms;
      linux;
    maintainers = with stdenv.lib.maintainers; 
      [raskin];
  };
}