forked from mirrors/nixpkgs
cpptest: init at 1.1.2
This commit is contained in:
parent
166aed1228
commit
3d17e2d658
17
pkgs/development/libraries/cpptest/default.nix
Normal file
17
pkgs/development/libraries/cpptest/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -5406,6 +5406,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 { };
|
||||
|
|
Loading…
Reference in a new issue