2020-03-31 03:08:35 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, python
|
|
|
|
, pkg-config
|
|
|
|
, readline
|
|
|
|
, talloc
|
|
|
|
, libxslt
|
|
|
|
, docbook-xsl-nons
|
|
|
|
, docbook_xml_dtd_42
|
2014-04-29 21:03:46 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-03-31 03:08:35 +01:00
|
|
|
pname = "tevent";
|
|
|
|
version = "0.9.37";
|
2014-04-29 21:03:46 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 03:08:35 +01:00
|
|
|
url = "mirror://samba/tevent/${pname}-${version}.tar.gz";
|
2018-07-13 02:32:00 +01:00
|
|
|
sha256 = "1q77vbjic2bb79li2a54ffscnrnwwww55fbpry2kgh7acpnlb0qn";
|
2014-04-29 21:03:46 +01:00
|
|
|
};
|
|
|
|
|
2020-03-31 03:08:35 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
2014-04-29 21:03:46 +01:00
|
|
|
buildInputs = [
|
2020-03-31 03:08:35 +01:00
|
|
|
python
|
|
|
|
readline
|
|
|
|
talloc
|
|
|
|
libxslt
|
|
|
|
docbook-xsl-nons
|
|
|
|
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";
|
2020-03-31 03:08:35 +01:00
|
|
|
homepage = "https://tevent.samba.org/";
|
2014-04-29 21:03:46 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|