2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python }:
|
2017-05-07 16:31:56 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hpx";
|
2021-02-18 01:31:19 -08:00
|
|
|
version = "1.6.0";
|
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;
|
2021-02-18 01:31:19 -08:00
|
|
|
sha256 = "sha256-Fkntfk5AaWtS1x0fXfLSWW/9tvKcCBi1COqgNxurPmk=";
|
2017-05-07 16:31:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ boost hwloc gperftools ];
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config python ];
|
2017-05-07 16:31:56 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "C++ standard library for concurrency and parallelism";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/STEllAR-GROUP/hpx";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.boost;
|
|
|
|
platforms = [ "x86_64-linux" ]; # lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ bobakker ];
|
2017-05-07 16:31:56 -07:00
|
|
|
};
|
|
|
|
}
|