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,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;
};
}