From c56adc9e014c31e6ef6cf2422e825471c560617d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 17 Aug 2015 08:25:52 +0200 Subject: [PATCH] cgal: fix src I'm sorry for the wrong combination of URL and hash. These release tarballs are much smaller; I don't know the difference, but they still seem to work (openscad, rpacad). Also comment on modules that aren't built. --- pkgs/development/libraries/CGAL/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix index 78b8f206f623..a903d5e46782 100644 --- a/pkgs/development/libraries/CGAL/default.nix +++ b/pkgs/development/libraries/CGAL/default.nix @@ -6,10 +6,12 @@ stdenv.mkDerivation rec { name = "cgal-${version}"; src = fetchurl { - url = "https://github.com/CGAL/releases/archive/releases/CGAL-${version}.tar.gz"; - sha256 = "09ph5qi7ixbkk3jssq3pdjf2nyw91s73dizi2mkx6brhrzd1zd5y"; + url = "https://github.com/CGAL/releases/archive/CGAL-${version}.tar.gz"; + sha256 = "05vk4l62d7g6cz19q36h1an5krxdbgq1fbs5hi0x2l7blsja1z6g"; }; + # note: optional component libCGAL_ImageIO would need zlib and opengl; + # there are also libCGAL_Qt{3,4} omitted ATM buildInputs = [ cmake boost gmp mpfr ]; doCheck = false;