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