2017-09-02 18:19:44 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, bison, flex, unixODBC
|
2014-12-30 08:05:12 +00:00
|
|
|
, openssl, openldap, cyrus_sasl, kerberos, expat, SDL, libdv, libv4l, alsaLib }:
|
2010-09-06 00:37:54 +01:00
|
|
|
|
2014-08-08 19:47:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-07 13:52:17 +00:00
|
|
|
name = "ptlib-2.10.11";
|
2014-08-08 19:47:16 +01: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-06 00:37:54 +01:00
|
|
|
};
|
|
|
|
|
2017-09-02 18:19:44 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-std=gnu++98";
|
|
|
|
|
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-06 00:37:54 +01:00
|
|
|
|
2014-08-08 19:47:16 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-02 18:19:44 +01:00
|
|
|
patches = [
|
2017-09-02 18:48:39 +01:00
|
|
|
(fetchpatch { url = http://sources.debian.net/data/main/p/ptlib/2.10.11~dfsg-2.1/debian/patches/bison-fix;
|
|
|
|
sha256 = "0vzv9kyn9s628z8wy2gva380gi1rmhxilwlg5pikl5a0wn8p46nw";
|
|
|
|
})
|
|
|
|
(fetchpatch { url = http://sources.debian.net/data/main/p/ptlib/2.10.11~dfsg-2.1/debian/patches/no-sslv3;
|
|
|
|
sha256 = "172s1dnnrl54p9sf1nl7s475sm78rpw3p8jxi0pdx6izzl8hcdr0";
|
|
|
|
})
|
2017-09-02 18:19:44 +01:00
|
|
|
(fetchpatch { url = http://sources.debian.net/data/main/p/ptlib/2.10.11~dfsg-2.1/debian/patches/gcc-5_support;
|
|
|
|
sha256 = "0pf2yj0150r4cnc6nv65mclrm3dillqh1xjk7m6gsjnk9b96i5d4";
|
|
|
|
})
|
|
|
|
];
|
2016-02-07 13:52:17 +00:00
|
|
|
|
2014-08-08 19:47:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-06 00:37:54 +01:00
|
|
|
description = "Portable Tools from OPAL VoIP";
|
2014-08-08 19:47:16 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2010-09-06 00:37:54 +01:00
|
|
|
};
|
2014-08-08 19:47:16 +01:00
|
|
|
|
2010-09-06 00:37:54 +01:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://ftp.gnome.org/sources/ptlib/";
|
|
|
|
};
|
|
|
|
};
|
2014-08-08 19:47:16 +01:00
|
|
|
}
|
2010-09-06 00:37:54 +01:00
|
|
|
|