2018-01-06 16:22:14 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2018-04-16 11:27:04 +01:00
|
|
|
import ./common.nix {
|
2018-04-16 15:18:33 +01:00
|
|
|
inherit stdenv fetchurl;
|
2017-12-13 17:45:07 +00:00
|
|
|
version = "5.0.1";
|
2018-04-16 11:27:04 +01:00
|
|
|
sha256 = "4814781d395b0ef093b21a08e8e6e0bd3dab8762f9935bbfb71679b0dea7c3e9";
|
2018-04-16 15:18:33 +01:00
|
|
|
patches = stdenv.lib.optional stdenv.isAarch64 (fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/jemalloc/jemalloc/pull/1035.patch";
|
|
|
|
sha256 = "02y0q3dp253bipxv4r954nqipbjbj92p6ww9bx5bk3d8pa81wkqq";
|
|
|
|
});
|
2015-03-11 21:32:21 +00:00
|
|
|
}
|