at v192 31 lines 836 B view raw
1{ stdenv, fetchurl, pkgconfig, bison, flex, unixODBC 2, openssl, openldap, cyrus_sasl, kerberos, expat, SDL, libdv, libv4l, alsaLib }: 3 4stdenv.mkDerivation rec { 5 name = "ptlib-2.10.10"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/ptlib/2.10/${name}.tar.xz"; 9 sha256 = "7fcaabe194cbd3bc0b370b951dffd19cfe7ea0298bfff6aecee948e97f3207e4"; 10 }; 11 12 buildInputs = [ pkgconfig bison flex unixODBC openssl openldap 13 cyrus_sasl kerberos expat SDL libdv libv4l alsaLib ]; 14 15 enableParallelBuilding = true; 16 17 patches = [ ./bison.patch ]; 18 19 meta = with stdenv.lib; { 20 description = "Portable Tools from OPAL VoIP"; 21 maintainers = [ maintainers.raskin ]; 22 platforms = platforms.linux; 23 }; 24 25 passthru = { 26 updateInfo = { 27 downloadPage = "http://ftp.gnome.org/sources/ptlib/"; 28 }; 29 }; 30} 31