2014-08-08 18:47:16 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, bison, flex, unixODBC
|
2014-12-30 08:05:12 +00:00
|
|
|
, openssl, openldap, cyrus_sasl, kerberos, expat, SDL, libdv, libv4l, alsaLib }:
|
2010-09-05 23:37:54 +00:00
|
|
|
|
2014-08-08 18:47:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-07 13:52:17 +00:00
|
|
|
name = "ptlib-2.10.11";
|
2014-08-08 18:47:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/ptlib/2.10/${name}.tar.xz";
|
2016-02-07 13:52:17 +00:00
|
|
|
sha256 = "1jf27mjz8vqnclhrhrpn7niz4c177kcjbd1hc7vn65ihcqfz05rs";
|
2010-09-05 23:37:54 +00:00
|
|
|
};
|
|
|
|
|
2016-02-07 13:52:17 +00:00
|
|
|
buildInputs = [ pkgconfig bison flex unixODBC openssl openldap
|
2014-12-30 08:05:12 +00:00
|
|
|
cyrus_sasl kerberos expat SDL libdv libv4l alsaLib ];
|
2010-09-05 23:37:54 +00:00
|
|
|
|
2014-08-08 18:47:16 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-07 13:52:17 +00:00
|
|
|
patches = [ ./bison.patch ./sslv3.patch ];
|
|
|
|
|
2014-08-08 18:47:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-05 23:37:54 +00:00
|
|
|
description = "Portable Tools from OPAL VoIP";
|
2014-08-08 18:47:16 +00:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2010-09-05 23:37:54 +00:00
|
|
|
};
|
2014-08-08 18:47:16 +00:00
|
|
|
|
2010-09-05 23:37:54 +00:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://ftp.gnome.org/sources/ptlib/";
|
|
|
|
};
|
|
|
|
};
|
2014-08-08 18:47:16 +00:00
|
|
|
}
|
2010-09-05 23:37:54 +00:00
|
|
|
|