adding twinkle, a voice over IP phone software

svn path=/nixpkgs/trunk/; revision=17303
This commit is contained in:
Marc Weber
2009-09-20 17:01:19 +00:00
parent 3eeec96a31
commit 34be37b51e
5 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
args: with args;
stdenv.mkDerivation {
name = "ccrtp-1.7.0";
src = fetchurl {
url = mirror://gnu/ccrtp/ccrtp-1.7.0.tar.gz;
sha256 = "1bjn5l476nk34gipz4jl2p83m735gzanzr046zrkx423zipx4g4j";
};
buildInputs = [openssl pkgconfig libgcrypt commoncpp2];
meta = {
description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
homepage = "http://www.gnu.org/software/ccrtp/";
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View File

@@ -0,0 +1,20 @@
args: with args;
stdenv.mkDerivation {
name = "commoncpp2-1.7.3";
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/commoncpp/commoncpp2-1.7.3.tar.gz;
sha256 = "11akz0gwr4xq5wbgbrb8ixkqmn8pmrwc19b9yw8lydvd3rh5gamk";
};
buildInputs = [];
meta = {
description = "highly portable application framework for threading,sockets, realtime network streaming, persistance, and file access";
homepage = http://sourceforge.net/projects/cplusplus/;
license = "LGPL";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View File

@@ -0,0 +1,19 @@
args: with args;
stdenv.mkDerivation {
name = "libzrtpcpp-1.4.1.tar";
src = fetchurl {
url = mirror://gnu/ccrtp/libzrtpcpp-1.4.1.tar.gz;
sha256 = "0gj5xiv15xnxdbppa06fy02j8jg0zm1capva4nhbpgzg08n7p8y0";
};
buildInputs = [commoncpp2 openssl pkgconfig ccrtp];
meta = {
description = "GNU RTP stack for the zrtp protocol developed by Phil Zimmermann";
homepage = "http://www.gnutelephony.org/index.php/GNU_ZRTP";
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}