2021-01-21 17:00:13 +00:00
|
|
|
{lib, stdenv, fetchurl}:
|
2016-05-14 23:13:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cpputest";
|
2021-03-04 11:42:29 +00:00
|
|
|
version = "4.0";
|
2016-05-14 23:13:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2020-05-28 02:49:29 +01:00
|
|
|
sha256 = "1xslavlb1974y5xvs8n1j9zkk05dlw8imy4saasrjlmibl895ii1";
|
2016-05-14 23:13:31 +01:00
|
|
|
};
|
|
|
|
|
2021-03-04 11:42:29 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://cpputest.github.io/";
|
2016-05-14 23:13:31 +01:00
|
|
|
description = "Unit testing and mocking framework for C/C++";
|
2021-03-04 08:11:18 +00:00
|
|
|
platforms = platforms.all;
|
2021-03-04 11:42:29 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.juliendehos ];
|
2016-05-14 23:13:31 +01:00
|
|
|
};
|
|
|
|
}
|