2015-01-03 01:19:48 +00:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, readline, talloc
|
2014-04-29 21:03:46 +01:00
|
|
|
, libxslt, docbook_xsl, docbook_xml_dtd_42
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-19 14:26:57 +01:00
|
|
|
name = "tevent-0.9.30";
|
2014-04-29 21:03:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 21:29:27 +00:00
|
|
|
url = "mirror://samba/tevent/${name}.tar.gz";
|
2016-09-19 14:26:57 +01:00
|
|
|
sha256 = "1gccqiibf6ia129xhqrg18anax3sxwfbwm8h4pvsga3ndxg931ap";
|
2014-04-29 21:03:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-01-03 01:19:48 +00:00
|
|
|
python pkgconfig readline talloc libxslt docbook_xsl docbook_xml_dtd_42
|
2014-04-29 21:03:46 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
2015-01-03 01:19:48 +00:00
|
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
|
2014-04-29 21:03:46 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--bundled-libraries=NONE"
|
|
|
|
"--builtin-libraries=replace"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "An event system based on the talloc memory management library";
|
2014-04-29 21:03:46 +01:00
|
|
|
homepage = http://tevent.samba.org/;
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|