nixpkgs/pkgs/development/libraries/tevent/default.nix
William A. Kennington III a41a8cee03 tevent: 0.9.24 -> 0.9.25
2015-06-18 22:48:43 -07:00

34 lines
877 B
Nix

{ stdenv, fetchurl, python, pkgconfig, readline, talloc
, libxslt, docbook_xsl, docbook_xml_dtd_42
}:
stdenv.mkDerivation rec {
name = "tevent-0.9.25";
src = fetchurl {
url = "mirror://samba/tevent/${name}.tar.gz";
sha256 = "0sf694bdp2l6s48gmr8hxlcpdmjbwhr9ph1faqxmkcqibbav1ppy";
};
buildInputs = [
python pkgconfig readline talloc libxslt docbook_xsl docbook_xml_dtd_42
];
preConfigure = ''
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,g' buildtools/bin/waf
'';
configureFlags = [
"--bundled-libraries=NONE"
"--builtin-libraries=replace"
];
meta = with stdenv.lib; {
description = "An event system based on the talloc memory management library";
homepage = http://tevent.samba.org/;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}