nixpkgs-suyu/pkgs/development/libraries/cpputest/default.nix

20 lines
542 B
Nix
Raw Normal View History

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