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