1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "jemalloc-4.0.0";
5
6 src = fetchurl {
7 url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2";
8 sha256 = "1wiydkp8a4adwsgfsd688hpv2z7hjv5manhckchk96v6qdsbqk91";
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}