about summary refs log tree commit diff
path: root/pkgs/development/libraries/CGAL
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-08-16 18:30:27 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-08-16 18:32:27 +0200
commit844bfc605a35a60ebf701d03005446698aadc7dd (patch)
tree0be11167eac2bc1b617d3adc027a8ec916d8d2f3 /pkgs/development/libraries/CGAL
parenta106080623d9806da90aeb73951e0773b8bca9af (diff)
cgal: fix build by update 4.5 -> 4.6.1
It was broken by cmake updates (between 3.2.2 and 3.3.1).
I chose the github tarballs because they have a predictable URL,
although they're much larger due to not supporting xz.

/cc maintainer @7c6f434c.
Diffstat (limited to 'pkgs/development/libraries/CGAL')
-rw-r--r--pkgs/development/libraries/CGAL/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix
index 505aab78242a9..78b8f206f623c 100644
--- a/pkgs/development/libraries/CGAL/default.nix
+++ b/pkgs/development/libraries/CGAL/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, cmake, boost, gmp, mpfr }:
 
 stdenv.mkDerivation rec {
-  version = "4.5";
+  version = "4.6.1";
 
   name = "cgal-${version}";
 
   src = fetchurl {
-    url = "https://gforge.inria.fr/frs/download.php/34139/CGAL-${version}.tar.xz";
-    sha256 = "00shds5yph4s09lqdrb6n60wnw9kpiwa25ghg9mbsgq3fnr8p7kr";
+    url = "https://github.com/CGAL/releases/archive/releases/CGAL-${version}.tar.gz";
+    sha256 = "09ph5qi7ixbkk3jssq3pdjf2nyw91s73dizi2mkx6brhrzd1zd5y";
   };
 
   buildInputs = [ cmake boost gmp mpfr ];