commoncpp2: remove, obsoleted by ucommon

This commit is contained in:
Franz Pletz 2019-12-26 16:25:50 +01:00
parent 0c64a9ad5b
commit c601d7835f
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 0 additions and 40 deletions

View File

@ -1,38 +0,0 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "commoncpp2-1.8.1";
src = fetchurl {
url = "mirror://gnu/commoncpp/${name}.tar.gz";
sha256 = "0kmgr5w3b1qwzxnsnw94q6rqs0hr8nbv9clf07ca2a2fyypx9kjk";
};
doCheck = true;
preBuild = ''
echo '#include <sys/stat.h>' >> inc/cc++/config.h
'';
meta = {
description = "GNU Common C++, a portable, highly optimized C++ class framework";
longDescription =
'' GNU Common C++ and GNU uCommon are very portable and highly
optimized class framework for writing C++ applications that need to
use threads and support concurrent sychronization, and that use
sockets, XML parsing, object serialization, thread-optimized String
and data structure classes, etc. This framework offers a class
foundation that hides platform differences from your C++ application
so that you need not write platform specific code. GNU Common C++
has been ported to compile nativily on most platforms which support
either posix threads, or on maybe be used with Debian hosted mingw32
to build native threading applications for Microsoft Windows.
'';
homepage = https://www.gnu.org/software/commoncpp/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -11002,8 +11002,6 @@ in
cointop = callPackage ../applications/misc/cointop { };
commoncpp2 = callPackage ../development/libraries/commoncpp2 { };
ctl = callPackage ../development/libraries/ctl { };
ctpp2 = callPackage ../development/libraries/ctpp2 { };