2015-01-03 04:20:02 +03:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, readline, libxslt
|
|
|
|
, docbook_xsl, docbook_xml_dtd_42
|
2014-04-29 23:26:09 +04:00
|
|
|
}:
|
2010-05-27 23:33:28 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-19 16:23:34 +03:00
|
|
|
name = "talloc-2.1.8";
|
2010-05-27 23:33:28 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-09 00:29:27 +03:00
|
|
|
url = "mirror://samba/talloc/${name}.tar.gz";
|
2016-09-19 16:23:34 +03:00
|
|
|
sha256 = "0c3ihyb0jd8mhvi7gg2mr5w1zl2habx6jlkbyxzyckad2q8lkl92";
|
2010-05-27 23:33:28 +04:00
|
|
|
};
|
|
|
|
|
2014-04-29 23:26:09 +04:00
|
|
|
buildInputs = [
|
2015-01-03 04:20:02 +03:00
|
|
|
python pkgconfig readline libxslt docbook_xsl docbook_xml_dtd_42
|
2014-04-29 23:26:09 +04:00
|
|
|
];
|
2011-09-22 03:23:12 +04:00
|
|
|
|
2014-04-29 23:26:09 +04:00
|
|
|
preConfigure = ''
|
2015-01-03 04:20:02 +03:00
|
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
|
2014-04-29 23:26:09 +04:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-talloc-compat1"
|
|
|
|
"--bundled-libraries=NONE"
|
|
|
|
"--builtin-libraries=replace"
|
|
|
|
];
|
|
|
|
|
2016-10-15 05:51:15 +03:00
|
|
|
postInstall = ''
|
|
|
|
ar q $out/lib/libtalloc.a bin/default/talloc_[0-9]*.o
|
2016-08-20 00:37:55 +03:00
|
|
|
'';
|
|
|
|
|
2014-04-29 23:26:09 +04:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Hierarchical pool based memory allocator with destructors";
|
2010-05-27 23:33:28 +04:00
|
|
|
homepage = http://tdb.samba.org/;
|
2014-04-29 23:26:09 +04:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.all;
|
2010-05-27 23:33:28 +04:00
|
|
|
};
|
|
|
|
}
|