nixpkgs/pkgs/development/libraries/hpx/default.nix

27 lines
758 B
Nix
Raw Normal View History

2017-05-08 02:31:56 +03:00
{ stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkgconfig, python }:
stdenv.mkDerivation rec {
pname = "hpx";
2020-09-05 04:39:41 +03:00
version = "1.5.0";
2017-05-08 02:31:56 +03:00
src = fetchFromGitHub {
owner = "STEllAR-GROUP";
repo = "hpx";
2019-09-09 02:38:31 +03:00
rev = version;
2020-09-05 04:39:41 +03:00
sha256 = "10hgjavhvn33y3k5j3l1326x13bxffghg2arxjrh7i7zd3qprfv5";
2017-05-08 02:31:56 +03:00
};
buildInputs = [ boost hwloc gperftools ];
nativeBuildInputs = [ cmake pkgconfig python ];
enableParallelBuilding = true;
meta = {
description = "C++ standard library for concurrency and parallelism";
homepage = "https://github.com/STEllAR-GROUP/hpx";
2017-05-08 02:31:56 +03:00
license = stdenv.lib.licenses.boost;
2017-05-08 15:47:51 +03:00
platforms = [ "x86_64-linux" ]; # stdenv.lib.platforms.linux;
2017-05-08 02:31:56 +03:00
maintainers = with stdenv.lib.maintainers; [ bobakker ];
};
}