talloc: re-add old static output

It was originally added by https://github.com/NixOS/nixpkgs/pull/5142 but removed in
863ef41025.y
This commit is contained in:
Dan Peebles 2016-08-19 21:37:55 +00:00
parent 64ba7b53f1
commit 7bf6e249eb

View File

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