Commit 0f567b49 authored by Beardhatcode's avatar Beardhatcode
Browse files

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: default avatarkirillrdy <kirillrdy@gmail.com>
parent 9b19f5e7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ];