arrow-cpp: pin jemalloc tarball (#177037)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Dmitry Kalinkin 2 years ago committed by GitHub
parent 8b78e69b76
commit b64c3d3885
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      pkgs/development/libraries/arrow-cpp/default.nix

@ -78,11 +78,14 @@ stdenv.mkDerivation rec {
};
sourceRoot = "apache-arrow-${version}/cpp";
${if enableJemalloc then "ARROW_JEMALLOC_URL" else null} = jemalloc.src;
# versions are all taken from
# https://github.com/apache/arrow/blob/apache-arrow-8.0.0/cpp/thirdparty/versions.txt
${if enableJemalloc then "ARROW_JEMALLOC_URL" else null} = fetchurl {
url = "https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2";
hash = "sha256-NDMOXOJ2CZ4uiVDZM121qHVomkxqVnUe87HYxTf4h/Y=";
};
ARROW_MIMALLOC_URL = fetchFromGitHub {
owner = "microsoft";
repo = "mimalloc";

Loading…
Cancel
Save