From 97352b1342acb10c525ddb8ca9e5aa15ec21b372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 24 Jan 2014 23:14:31 +0100 Subject: [PATCH] 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. --- pkgs/development/libraries/CGAL/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix index 0b65fcba0cb..77c486350b8 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 ];