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