summary refs log tree commit diff
path: root/pkgs/development/libraries/CGAL/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-08-17 08:25:52 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-08-17 08:35:25 +0200
commitc56adc9e014c31e6ef6cf2422e825471c560617d (patch)
tree7ab38136e5900243dc649c8325b3ea5b06d86176 /pkgs/development/libraries/CGAL/default.nix
parenta0f50dc665be1dfb8792db584e6b67afd075cf47 (diff)
downloadnixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar.gz
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar.bz2
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar.lz
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar.xz
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.tar.zst
nixpkgs-c56adc9e014c31e6ef6cf2422e825471c560617d.zip
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.
Diffstat (limited to 'pkgs/development/libraries/CGAL/default.nix')
-rw-r--r--pkgs/development/libraries/CGAL/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix
index 78b8f206f62..a903d5e4678 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;