1 { lib, stdenv, fetchurl, blas, lapack, mpi } :
3 assert (!blas.isILP64) && (!lapack.isILP64);
5 stdenv.mkDerivation rec {
10 url = "http://www.netlib.org/benchmark/hpl/${pname}-${version}.tar.gz";
11 sha256 = "0c18c7fzlqxifz1bf3izil0bczv3a7nsv0dn6winy3ik49yw3i9j";
14 enableParallelBuilding = true;
17 # only contains the static lib
20 install -D testing/ptest/HPL.dat $out/share/hpl/HPL.dat
23 buildInputs = [ blas lapack mpi ];
26 description = "Portable Implementation of the Linpack Benchmark for Distributed-Memory Computers";
27 homepage = "http://www.netlib.org/benchmark/hpl/";
28 platforms = platforms.unix;
29 license = licenses.bsdOriginal;
30 maintainers = [ maintainers.markuskowa ];