2017-05-07 23:31:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkgconfig, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hpx-${version}";
|
2018-03-25 22:57:20 +00:00
|
|
|
version = "1.1.0";
|
2017-05-07 23:31:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "STEllAR-GROUP";
|
|
|
|
repo = "hpx";
|
|
|
|
rev = "${version}";
|
2018-03-25 22:57:20 +00:00
|
|
|
sha256 = "0xlhnycmpy2jgiqyzpwmkdrl6drf46ywdsl0qm4vksvjxqfgk9z3";
|
2017-05-07 23:31:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ boost hwloc gperftools ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig python ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "C++ standard library for concurrency and parallelism";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/STEllAR-GROUP/hpx;
|
2017-05-07 23:31:56 +00:00
|
|
|
license = stdenv.lib.licenses.boost;
|
2017-05-08 12:47:51 +00:00
|
|
|
platforms = [ "x86_64-linux" ]; # stdenv.lib.platforms.linux;
|
2017-05-07 23:31:56 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bobakker ];
|
|
|
|
};
|
|
|
|
}
|