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

34 lines
877 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 {
2015-03-04 22:52:38 +01:00
name = "tevent-0.9.24";
2014-04-29 22:03:46 +02:00
src = fetchurl {
url = "mirror://samba/tevent/${name}.tar.gz";
2015-03-04 22:52:38 +01:00
sha256 = "0l1zjx2z6nhvn6gwbcvzn8w0cca53j717fwi10s7a5v1jb04rfad";
2014-04-29 22:03:46 +02:00
};
buildInputs = [
2015-01-03 02:19:48 +01:00
python pkgconfig 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";
2014-04-29 22:03:46 +02:00
homepage = http://tevent.samba.org/;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.all;
};
}