2017-05-08 01:31:56 +02:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkgconfig, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "hpx";
|
2019-06-01 23:51:19 +02:00
|
|
|
version = "1.3.0";
|
2017-05-08 01:31:56 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "STEllAR-GROUP";
|
|
|
|
repo = "hpx";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2019-06-01 23:51:19 +02:00
|
|
|
sha256 = "0yzxb8520qh9rvzsa190yzx21jn3d8rl8ac5v01767ygd0413hfk";
|
2017-05-08 01:31:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ boost hwloc gperftools ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig python ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "C++ standard library for concurrency and parallelism";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/STEllAR-GROUP/hpx;
|
2017-05-08 01:31:56 +02:00
|
|
|
license = stdenv.lib.licenses.boost;
|
2017-05-08 14:47:51 +02:00
|
|
|
platforms = [ "x86_64-linux" ]; # stdenv.lib.platforms.linux;
|
2017-05-08 01:31:56 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bobakker ];
|
|
|
|
};
|
|
|
|
}
|