nixpkgs/pkgs/development/libraries/hpx/default.nix
2022-08-14 11:05:40 +00:00

28 lines
752 B
Nix

{ lib, stdenv, fetchFromGitHub, asio, boost, cmake, hwloc, gperftools, ninja
, pkg-config, python3 }:
stdenv.mkDerivation rec {
pname = "hpx";
version = "1.8.1";
src = fetchFromGitHub {
owner = "STEllAR-GROUP";
repo = "hpx";
rev = version;
sha256 = "sha256-YJ4wHaPE5E6ngUAYrQB1SkW4IoHW71tUDKKNANVA9Xw=";
};
buildInputs = [ asio boost hwloc gperftools ];
nativeBuildInputs = [ cmake pkg-config python3 ];
strictDeps = true;
meta = {
description = "C++ standard library for concurrency and parallelism";
homepage = "https://github.com/STEllAR-GROUP/hpx";
license = lib.licenses.boost;
platforms = [ "x86_64-linux" ]; # lib.platforms.linux;
maintainers = with lib.maintainers; [ bobakker ];
};
}