talloc: export archive to allow static linkage

This commit is contained in:
Boris Sukholitko 2014-11-26 20:37:58 +02:00
parent c347f1c26f
commit b1b5712c43

View File

@ -27,6 +27,10 @@ stdenv.mkDerivation rec {
"--builtin-libraries=replace"
];
postInstall = ''
ar qf $out/lib/libtalloc.a bin/default/talloc_5.o
'';
meta = with stdenv.lib; {
description = "Hierarchical pool based memory allocator with destructors";
homepage = http://tdb.samba.org/;