3
0
Fork 0
forked from mirrors/nixpkgs

Update CGAL; NB: updating requires going through a formto get the fresh links

This commit is contained in:
Michael Raskin 2014-08-31 19:59:14 +04:00
parent 45c4e4d04a
commit 965cf1b9fb

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
version = "4.3";
version = "4.4";
name = "cgal-${version}";
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/32995/CGAL-${version}.tar.xz";
sha256 = "015vw57dmy43bf63mg3916cgcsbv9dahwv24bnmiajyanj2mhiyc";
url = "https://gforge.inria.fr/frs/download.php/33526/CGAL-${version}.tar.xz";
sha256 = "1s0ylyrx74vgw6vsg6xxk4b07jrxh8pqcmxcbkx46v01nczv3ixj";
};
buildInputs = [ cmake boost gmp mpfr ];