summary refs log tree commit diff
path: root/pkgs/development/libraries/commoncpp2/default.nix
blob: 28ba597e03541ef98bb40e2fa2437333b7843245 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args: with args;
stdenv.mkDerivation {
  name = "commoncpp2-2.0.8";

  src = fetchurl {
    url = http://ftp.gnu.org/pub/gnu/commoncpp/ucommon-2.0.8.tar.gz;
    sha256 = "09mk70kqwr1pmxa35x0is16g2sa60b3z8p4p5yccw59pp1hpxpq3";
  };

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