3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/tevent/default.nix

34 lines
884 B
Nix
Raw Normal View History

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 {
name = "tevent-0.9.22";
src = fetchurl {
url = "http://samba.org/ftp/tevent/${name}.tar.gz";
sha256 = "0myyi3lwsi6f3f0a5qw8rjpm2d5yf18pw4vljdwyi885l411sksl";
};
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; {
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;
};
}