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

53 lines
939 B
Nix
Raw Normal View History

{ stdenv
, fetchurl
, python3
, pkg-config
, readline
, talloc
, libxslt
, docbook-xsl-nons
, docbook_xml_dtd_42
, which
, wafHook
2014-04-29 22:03:46 +02:00
}:
stdenv.mkDerivation rec {
pname = "tevent";
version = "0.10.2";
2014-04-29 22:03:46 +02:00
src = fetchurl {
url = "mirror://samba/tevent/${pname}-${version}.tar.gz";
sha256 = "15k6i8ad5lpxfjsjyq9h64zlyws8d3cm0vwdnaw8z1xjwli7hhpq";
2014-04-29 22:03:46 +02:00
};
nativeBuildInputs = [
pkg-config
which
python3
libxslt
docbook-xsl-nons
docbook_xml_dtd_42
wafHook
];
2014-04-29 22:03:46 +02:00
buildInputs = [
python3
readline # required to build python
talloc
2014-04-29 22:03:46 +02:00
];
wafPath = "buildtools/bin/waf";
2014-04-29 22:03:46 +02:00
wafConfigureFlags = [
2014-04-29 22:03:46 +02:00
"--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";
homepage = "https://tevent.samba.org/";
2014-04-29 22:03:46 +02:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
};
}