2017-05-07 16:31:56 -07:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkgconfig, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hpx";
|
2020-10-18 05:28:47 -07:00
|
|
|
version = "1.5.1";
|
2017-05-07 16:31:56 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "STEllAR-GROUP";
|
|
|
|
repo = "hpx";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2020-10-18 05:28:47 -07:00
|
|
|
sha256 = "1ld2k00500p107jarw379hsd1nlnm33972nv9c3ssfq619bj01c9";
|
2017-05-07 16:31:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ boost hwloc gperftools ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig python ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "C++ standard library for concurrency and parallelism";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/STEllAR-GROUP/hpx";
|
2017-05-07 16:31:56 -07:00
|
|
|
license = stdenv.lib.licenses.boost;
|
2017-05-08 05:47:51 -07:00
|
|
|
platforms = [ "x86_64-linux" ]; # stdenv.lib.platforms.linux;
|
2017-05-07 16:31:56 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bobakker ];
|
|
|
|
};
|
|
|
|
}
|