linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / hpl / default.nix
blobc9a81ebb8a1bc82493239d3c22cd3b122e616863
1 { lib, stdenv, fetchurl, blas, lapack, mpi } :
3 assert (!blas.isILP64) && (!lapack.isILP64);
5 stdenv.mkDerivation rec {
6   pname = "hpl";
7   version = "2.3";
9   src = fetchurl {
10     url = "http://www.netlib.org/benchmark/hpl/${pname}-${version}.tar.gz";
11     sha256 = "0c18c7fzlqxifz1bf3izil0bczv3a7nsv0dn6winy3ik49yw3i9j";
12   };
14   enableParallelBuilding = true;
16   postInstall = ''
17     # only contains the static lib
18     rm -r $out/lib
20     install -D testing/ptest/HPL.dat $out/share/hpl/HPL.dat
21   '';
23   buildInputs = [ blas lapack mpi ];
25   meta = with lib; {
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 ];
31   };