Merge pull request #8855 from bosu/add-cpptest

cpptest: init at 1.1.2
This commit is contained in:
Arseniy Seroka 2015-07-18 12:55:20 +03:00
commit 30f1c9da75
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "cpptest-1.1.2";
src = fetchurl {
url = "http://downloads.sourceforge.net/project/cpptest/cpptest/${name}/${name}.tar.gz";
sha256 = "09v070a9dv6zq6hgj4v67i31zsis3s96psrnhlq9g4vhdcaxykwy";
};
meta = with stdenv.lib; {
homepage = http://cpptest.sourceforge.net/;
description = "Simple C++ unit testing framework";
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.lgpl3;
};
}

View file

@ -5408,6 +5408,8 @@ let
framac = callPackage ../development/tools/analysis/frama-c { };
cpptest = callPackage ../development/libraries/cpptest { };
cppi = callPackage ../development/tools/misc/cppi { };
cproto = callPackage ../development/tools/misc/cproto { };