nixpkgs/pkgs/development/libraries/commoncpp2/default.nix
Marc Weber 34be37b51e adding twinkle, a voice over IP phone software
svn path=/nixpkgs/trunk/; revision=17303
2009-09-20 17:01:19 +00:00

21 lines
590 B
Nix

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