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

19 lines
589 B
Nix
Raw Normal View History

2015-03-11 21:32:21 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-08-30 17:55:06 +00:00
name = "jemalloc-4.0.0";
2015-03-11 21:32:21 +00:00
src = fetchurl {
url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2";
2015-08-30 17:55:06 +00:00
sha256 = "1wiydkp8a4adwsgfsd688hpv2z7hjv5manhckchk96v6qdsbqk91";
2015-03-11 21:32:21 +00:00
};
meta = with stdenv.lib; {
homepage = http://www.canonware.com/jemalloc/index.html;
description = "a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}