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