Merge pull request #281144 from beardhatcode/bump/hpx

hpx: 1.8.1 -> 1.9.1
This commit is contained in:
kirillrdy 2024-01-18 09:28:37 +09:00 committed by GitHub
commit e19e51fd6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,29 @@
{ lib, stdenv, fetchFromGitHub, asio, boost, cmake, hwloc, gperftools, ninja
, pkg-config, python3 }:
{ lib
, stdenv
, fetchFromGitHub
, asio
, boost
, cmake
, hwloc
, gperftools
, ninja
, pkg-config
, python3
}:
stdenv.mkDerivation rec {
pname = "hpx";
version = "1.8.1";
version = "1.9.1";
src = fetchFromGitHub {
owner = "STEllAR-GROUP";
repo = "hpx";
rev = version;
sha256 = "sha256-YJ4wHaPE5E6ngUAYrQB1SkW4IoHW71tUDKKNANVA9Xw=";
rev = "v${version}";
hash = "sha256-1gLDwgCqv+3+rOSG7a3fFsnjqfKpnPpWnBmrW+z+jWw=";
};
buildInputs = [ asio boost hwloc gperftools ];
propagatedBuildInputs = [ hwloc ];
buildInputs = [ asio boost gperftools ];
nativeBuildInputs = [ cmake pkg-config python3 ];
strictDeps = true;