about summary refs log tree commit diff
path: root/pkgs/development/libraries/CGAL
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-01-24 23:14:31 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-01-25 10:18:58 +0100
commit97352b1342acb10c525ddb8ca9e5aa15ec21b372 (patch)
treee98e602817418f531122fc033acc62e9687daf75 /pkgs/development/libraries/CGAL
parent458d0a92c9bc2339ff434fe651359a6c18888937 (diff)
downloadnixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar.gz
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar.bz2
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar.lz
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar.xz
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.tar.zst
nixlib-97352b1342acb10c525ddb8ca9e5aa15ec21b372.zip
cgal: update from 3.9 to 4.3 (really)
The previous version bump didn't actually do anything; it changed the
version/url but didn't change the hash. For some reason the (new) URL
returned the same old package with the same old hash (or so it seems).

This time the package is really updated, as can be seen from the version
number in $cgal/include/CGAL/version.h.

This change unbreaks openscad.
Diffstat (limited to 'pkgs/development/libraries/CGAL')
-rw-r--r--pkgs/development/libraries/CGAL/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix
index 0b65fcba0cb3..77c486350b84 100644
--- a/pkgs/development/libraries/CGAL/default.nix
+++ b/pkgs/development/libraries/CGAL/default.nix
@@ -5,8 +5,8 @@ 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";
+    url = "https://gforge.inria.fr/frs/download.php/32995/CGAL-${version}.tar.xz";
+    sha256 = "015vw57dmy43bf63mg3916cgcsbv9dahwv24bnmiajyanj2mhiyc";
   };
 
   buildInputs = [cmake boost gmp mpfr ];