summary refs log tree commit diff
path: root/pkgs/development/libraries/tevent/default.nix
blob: e92ae2ecef1e507e65f82a3c477358fd66539340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
  };
}