8fe5c2b8c7
Semi-automatic update. These checks were performed: - built on NixOS - found 0.9.35 with grep in /nix/store/i0wf9rm4gv5l2sd6rfssr7nql1dkpdx4-tevent-0.9.35 - found 0.9.35 in filename of file in /nix/store/i0wf9rm4gv5l2sd6rfssr7nql1dkpdx4-tevent-0.9.35 cc "@wkennington"
35 lines
904 B
Nix
35 lines
904 B
Nix
{ stdenv, fetchurl, python, pkgconfig, readline, talloc
|
|
, libxslt, docbook_xsl, docbook_xml_dtd_42
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tevent-0.9.35";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/tevent/${name}.tar.gz";
|
|
sha256 = "1s8nbkmqz8dzdlsd6qynhvyl05pw93r151f3i2kgjfpbck9ak8r5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
python readline talloc libxslt docbook_xsl docbook_xml_dtd_42
|
|
];
|
|
|
|
preConfigure = ''
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/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;
|
|
};
|
|
}
|