hpx: 1.8.1 -> 1.9.1

released in august 2023
https://hpx-docs.stellar-group.org/tags/v1.9.1/html/releases/whats_new_1_9_1.html

hpx: use hash attribute instead of sha256

Co-authored-by: kirillrdy <kirillrdy@gmail.com>
This commit is contained in:
Beardhatcode 2024-01-15 15:15:48 +01:00
parent 9b19f5e77d
commit 0f567b4930

View file

@ -3,13 +3,13 @@
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 ];