talloc 2.0.1

svn path=/nixpkgs/trunk/; revision=22009
This commit is contained in:
David Guibert 2010-05-27 19:33:28 +00:00
parent 3182083b58
commit b3e7257c5f
2 changed files with 28 additions and 0 deletions

@ -0,0 +1,20 @@
{ fetchurl, stdenv}:
stdenv.mkDerivation rec {
name = "talloc-2.0.1";
src = fetchurl {
url = "http://samba.org/ftp/talloc/${name}.tar.gz";
md5 = "c6e736540145ca58cb3dcb42f91cf57b";
};
configureFlags = "--enable-talloc-compat1 --enable-largefile";
meta = {
description = "talloc is a hierarchical pool based memory allocator with destructors";
homepage = http://tdb.samba.org/;
license = "GPLv3";
platforms = stdenv.lib.platforms.all;
};
}

@ -5256,6 +5256,14 @@ let
inherit stdenv fetchurl cmake taglib;
};
talloc = import ../development/libraries/talloc {
inherit fetchurl stdenv;
};
## tapioca_qt = import ../development/libraries/tapioca-qt {
## inherit stdenv fetchurl cmake qt4 telepathy_qt;
## };
tdb = import ../development/libraries/tdb {
inherit fetchurl stdenv libxslt libxml2 docbook_xsl;
};