hwloc: 1.6 -> 1.11.2 and disable tests

This package was failing to build on wendy:

lt-linux-libnuma: linux-libnuma.c:70: main: Assertion `numa_bitmask_equal(bitmask, numa_all_nodes_ptr)' failed.

Since we shouldn't run tests that depend on the hardware
characteristics of the build machine, I've disabled these.

+6 -6
+6 -6
pkgs/development/libraries/hwloc/default.nix
··· 2 2 , pciutils, numactl }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "hwloc-1.6"; 5 + name = "hwloc-1.11.2"; 6 6 7 7 src = fetchurl { 8 - url = "http://www.open-mpi.org/software/hwloc/v1.6/downloads/${name}.tar.bz2"; 9 - sha256 = "0y561bryiqp1f5af5lm432dcw93xwp1jw55si7wa6skxnd6ch25w"; 8 + url = "http://www.open-mpi.org/software/hwloc/v1.11/downloads/${name}.tar.bz2"; 9 + sha1 = "3d68de060808f04349538be4e63cde501cd53b0a"; 10 10 }; 11 11 12 12 # XXX: libX11 is not directly needed, but needed as a propagated dep of Cairo. ··· 39 39 -e "s|-lnuma|-L$numalibdir -lnuma|g" 40 40 ''; 41 41 42 - # XXX: A test hangs on Cygwin, see 43 - # <http://hydra.bordeaux.inria.fr/build/51474/nixlog/1/raw>. 44 - doCheck = !stdenv.isCygwin; 42 + # Checks disabled because they're impure (hardware dependent) and 43 + # fail on some build machines. 44 + doCheck = false; 45 45 46 46 meta = with stdenv.lib; { 47 47 description = "Portable abstraction of hierarchical architectures for high-performance computing";