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