nixpkgs/pkgs/development/libraries/jemalloc/default.nix

23 lines
671 B
Nix
Raw Normal View History

2015-03-11 21:32:21 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-10-16 23:45:26 +00:00
name = "jemalloc-4.0.3";
2015-03-11 21:32:21 +00:00
src = fetchurl {
url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2";
2015-10-16 23:45:26 +00:00
sha256 = "1mpnfaniaybv8kh7yjqq2g595l2i08m7adg238k5igzf61n6ixzi";
2015-03-11 21:32:21 +00:00
};
meta = with stdenv.lib; {
homepage = http://www.canonware.com/jemalloc/index.html;
description = "General purpose malloc(3) implementation";
longDescription = ''
malloc(3)-compatible memory allocator that emphasizes fragmentation
avoidance and scalable concurrency support.
'';
2015-03-11 21:32:21 +00:00
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}