3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/hpx/default.nix

28 lines
753 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, asio, boost, cmake, hwloc, gperftools, ninja
, pkg-config, python3 }:
2017-05-08 00:31:56 +01:00
stdenv.mkDerivation rec {
pname = "hpx";
version = "1.7.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;
sha256 = "1knx7kr8iw4b7nh116ygd00y68y84jjb4fj58jkay7n5qlrxh604";
2017-05-08 00:31:56 +01:00
};
buildInputs = [ asio boost hwloc gperftools ];
2021-03-26 08:27:27 +00:00
nativeBuildInputs = [ cmake pkg-config python3 ];
strictDeps = true;
2017-05-08 00:31:56 +01:00
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 ];
2017-05-08 00:31:56 +01:00
};
}