jemalloc: Add derivation
This commit is contained in:
parent
b36904d936
commit
1e873e636a
18
pkgs/development/libraries/jemalloc/default.nix
Normal file
18
pkgs/development/libraries/jemalloc/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "jemalloc-3.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.canonware.com/download/jemalloc/${name}.tar.bz2";
|
||||
sha256 = "1zl4vxxjvhg72bdl53sl0idz9wp18c6yzjdmqcnwm09wvmcj2v71";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5967,6 +5967,8 @@ let
|
||||
|
||||
jbig2dec = callPackage ../development/libraries/jbig2dec { };
|
||||
|
||||
jemalloc = callPackage ../development/libraries/jemalloc { };
|
||||
|
||||
jetty_gwt = callPackage ../development/libraries/java/jetty-gwt { };
|
||||
|
||||
jetty_util = callPackage ../development/libraries/java/jetty-util { };
|
||||
|
Loading…
Reference in New Issue
Block a user