1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "jemalloc-4.0.2";
5
6 src = fetchurl {
7 url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2";
8 sha256 = "04a6iw9wiwiknd7v3l3i7vpmc5nvv52islnb1hz9idmdk259r2hd";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = http://www.canonware.com/jemalloc/index.html;
13 description = "a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support";
14 license = licenses.bsd2;
15 platforms = platforms.all;
16 maintainers = with maintainers; [ wkennington ];
17 };
18}