nixpkgs/pkgs/development/libraries/tevent/default.nix

35 lines
905 B
Nix
Raw Normal View History

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