Merge pull request #15467 from juliendehos/cpputest
cpputest: init at 3.7.2
This commit is contained in:
commit
58736aec93
@ -179,6 +179,7 @@
|
||||
joelteon = "Joel Taylor <me@joelt.io>";
|
||||
jpbernardy = "Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>";
|
||||
jraygauthier = "Raymond Gauthier <jraygauthier@gmail.com>";
|
||||
juliendehos = "Julien Dehos <dehos@lisic.univ-littoral.fr>";
|
||||
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||
jwilberding = "Jordan Wilberding <jwilberding@afiniate.com>";
|
||||
jzellner = "Jeff Zellner <jeffz@eml.cc>";
|
||||
|
19
pkgs/development/libraries/cpputest/default.nix
Normal file
19
pkgs/development/libraries/cpputest/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.7.2";
|
||||
name = "cpputest-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/cpputest/cpputest/releases/download/${version}/${name}.tar.gz";
|
||||
sha256 = "0lwn226d8mrppdyzcvr08vsnnp6h0mpy5kz5a475ish87az00pcc";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://cpputest.github.io/";
|
||||
description = "Unit testing and mocking framework for C/C++";
|
||||
platforms = stdenv.lib.platforms.linux ;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = [ stdenv.lib.maintainers.juliendehos ];
|
||||
};
|
||||
}
|
@ -6731,6 +6731,8 @@ in
|
||||
|
||||
cppunit = callPackage ../development/libraries/cppunit { };
|
||||
|
||||
cpputest = callPackage ../development/libraries/cpputest { };
|
||||
|
||||
cracklib = callPackage ../development/libraries/cracklib { };
|
||||
|
||||
cryptopp = callPackage ../development/libraries/crypto++ { };
|
||||
|
Loading…
Reference in New Issue
Block a user