Skip to content

Commit

Permalink
tevent: Add package
Browse files Browse the repository at this point in the history
  • Loading branch information
wkennington committed Nov 6, 2014
1 parent 59d3fd5 commit 39d77d9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/development/libraries/tevent/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ stdenv, fetchurl, python27, pkgconfig, readline, gettext, talloc
, libxslt, docbook_xsl, docbook_xml_dtd_42
, acl ? null, heimdal ? null, libaio ? null, libcap ? null, sasl ? null
, pam ? null, zlib ? null, libgcrypt ? null
}:

stdenv.mkDerivation rec {
name = "tevent-0.9.22";

src = fetchurl {
url = "http://samba.org/ftp/tevent/${name}.tar.gz";
sha256 = "0myyi3lwsi6f3f0a5qw8rjpm2d5yf18pw4vljdwyi885l411sksl";
};

buildInputs = [
python27 pkgconfig readline gettext talloc libxslt docbook_xsl
docbook_xml_dtd_42
acl heimdal libaio libcap sasl pam zlib libgcrypt
];

preConfigure = ''
sed -i 's,#!/usr/bin/env python,#!${python27}/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;
};
}
5 changes: 5 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6872,6 +6872,11 @@ let

telepathy_qt = callPackage ../development/libraries/telepathy/qt { };

tevent = callPackage ../development/libraries/tevent {
libgcrypt = libgcrypt_1_6;
sasl = cyrus_sasl;
};

thrift = callPackage ../development/libraries/thrift { };

tinyxml = tinyxml2;
Expand Down

0 comments on commit 39d77d9

Please sign in to comment.