1 { lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python3 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "STEllAR-GROUP";
11 sha256 = "sha256-Fkntfk5AaWtS1x0fXfLSWW/9tvKcCBi1COqgNxurPmk=";
14 buildInputs = [ boost hwloc gperftools ];
15 nativeBuildInputs = [ cmake pkg-config python3 ];
20 description = "C++ standard library for concurrency and parallelism";
21 homepage = "https://github.com/STEllAR-GROUP/hpx";
22 license = lib.licenses.boost;
23 platforms = [ "x86_64-linux" ]; # lib.platforms.linux;
24 maintainers = with lib.maintainers; [ bobakker ];