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