about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-25 23:29:14 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-03-26 00:24:18 -0700
commit5cd11989c55e32df83cf5c4bc257bb6825b4e889 (patch)
treee742dd9b89f8d2ee5b781fc46ae99daac7e6de73 /pkgs/development/libraries
parent8af39c1cf725be2f42b8d104cf39f2cd74840cac (diff)
downloadnixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar.gz
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar.bz2
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar.lz
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar.xz
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.tar.zst
nixlib-5cd11989c55e32df83cf5c4bc257bb6825b4e889.zip
cloog: 0.18.0 -> 0.18.3
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/cloog/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/cloog/default.nix b/pkgs/development/libraries/cloog/default.nix
index 926da22b2802..629cdba1fd4c 100644
--- a/pkgs/development/libraries/cloog/default.nix
+++ b/pkgs/development/libraries/cloog/default.nix
@@ -1,11 +1,11 @@
 { fetchurl, stdenv, gmp, isl }:
 
 stdenv.mkDerivation rec {
-  name = "cloog-0.18.0";
+  name = "cloog-0.18.3";
 
   src = fetchurl {
     url = "http://www.bastoul.net/cloog/pages/download/count.php3?url=./${name}.tar.gz";
-    sha256 = "1c4aa8dde7886be9cbe0f9069c334843b21028f61d344a2d685f88cb1dcf2228";
+    sha256 = "0d4pqs4rs1qx0302wpv06ww1nwyg4yv5cw9qpfzxz36b19s6q326";
   };
 
   buildInputs = [ gmp ];
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--with-isl=system" ];
 
-  enableParallelBuilding = true;
+  # Breaks the test cases
+  #enableParallelBuilding = true;
 
   doCheck = true;