Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / hpx / default.nix
blob2464e95c6b6d7e1d15ecb36364ce957a812937a1
1 { lib, stdenv, fetchFromGitHub, asio, boost, cmake, hwloc, gperftools, ninja
2 , pkg-config, python3 }:
4 stdenv.mkDerivation rec {
5   pname = "hpx";
6   version = "1.8.1";
8   src = fetchFromGitHub {
9     owner = "STEllAR-GROUP";
10     repo = "hpx";
11     rev = version;
12     sha256 = "sha256-YJ4wHaPE5E6ngUAYrQB1SkW4IoHW71tUDKKNANVA9Xw=";
13   };
15   buildInputs = [ asio boost hwloc gperftools ];
16   nativeBuildInputs = [ cmake pkg-config python3 ];
18   strictDeps = true;
20   meta = {
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 ];
26   };