jemalloc: don't try to patch 4.5.0

This commit is contained in:
Yorick van Pelt
2018-04-16 16:18:33 +02:00
parent 2c5efc8735
commit c03f5f5579
3 changed files with 10 additions and 11 deletions

View File

@@ -1,6 +1,10 @@
{ stdenv, fetchurl, fetchpatch }:
import ./common.nix {
inherit stdenv fetchurl fetchpatch;
inherit stdenv fetchurl;
version = "5.0.1";
sha256 = "4814781d395b0ef093b21a08e8e6e0bd3dab8762f9935bbfb71679b0dea7c3e9";
patches = stdenv.lib.optional stdenv.isAarch64 (fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/jemalloc/jemalloc/pull/1035.patch";
sha256 = "02y0q3dp253bipxv4r954nqipbjbj92p6ww9bx5bk3d8pa81wkqq";
});
}