linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / hpx / default.nix
blob73d1eea988de2a262e1d8d1ca6c6bc9f396427fd
1 { lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python3 }:
3 stdenv.mkDerivation rec {
4   pname = "hpx";
5   version = "1.6.0";
7   src = fetchFromGitHub {
8     owner = "STEllAR-GROUP";
9     repo = "hpx";
10     rev = version;
11     sha256 = "sha256-Fkntfk5AaWtS1x0fXfLSWW/9tvKcCBi1COqgNxurPmk=";
12   };
14   buildInputs = [ boost hwloc gperftools ];
15   nativeBuildInputs = [ cmake pkg-config python3 ];
17   strictDeps = true;
19   meta = {
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 ];
25   };