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

50 lines
928 B
Nix
Raw Normal View History

{ 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 {
pname = "tevent";
version = "0.9.37";
2014-04-29 21:03:46 +01:00
src = fetchurl {
url = "mirror://samba/tevent/${pname}-${version}.tar.gz";
sha256 = "1q77vbjic2bb79li2a54ffscnrnwwww55fbpry2kgh7acpnlb0qn";
2014-04-29 21:03:46 +01:00
};
nativeBuildInputs = [
pkg-config
];
2014-04-29 21:03:46 +01:00
buildInputs = [
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";
homepage = "https://tevent.samba.org/";
2014-04-29 21:03:46 +01:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}