Merge pull request #5142 from bosu/static-proot

proot: allow static compilation
This commit is contained in:
Michael Raskin
2015-04-04 13:26:21 +03:00
2 changed files with 8 additions and 2 deletions

View File

@@ -24,6 +24,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/;