summary refs log blame commit diff
path: root/pkgs/development/libraries/CGAL/default.nix
blob: 77c486350b84d873ff576de0e4f74ac6dcb3f085 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                          
                  

                           

                                                                                  















                                                              
{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/32995/CGAL-${version}.tar.xz";
    sha256 = "015vw57dmy43bf63mg3916cgcsbv9dahwv24bnmiajyanj2mhiyc";
  };

  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];
  };
}