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

20 lines
542 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
2016-05-14 22:13:31 +00:00
stdenv.mkDerivation rec {
pname = "cpputest";
2021-03-04 11:42:29 +00:00
version = "4.0";
2016-05-14 22:13:31 +00:00
src = fetchurl {
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-14 22:13:31 +00:00
};
2021-03-04 11:42:29 +00:00
meta = with lib; {
homepage = "https://cpputest.github.io/";
2016-05-14 22:13:31 +00: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 22:13:31 +00:00
};
}