3
0
Fork 0
forked from mirrors/nixpkgs

cpputest: cleanup

This commit is contained in:
Sandro Jäckel 2021-03-04 12:42:29 +01:00
parent ac8f57f172
commit 5c6af7b729
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,19 +1,19 @@
{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "4.0";
pname = "cpputest";
version = "4.0";
src = fetchurl {
url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "1xslavlb1974y5xvs8n1j9zkk05dlw8imy4saasrjlmibl895ii1";
};
meta = {
homepage = "http://cpputest.github.io/";
meta = with lib; {
homepage = "https://cpputest.github.io/";
description = "Unit testing and mocking framework for C/C++";
platforms = lib.platforms.linux ;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.juliendehos ];
platforms = platforms.linux ;
license = licenses.bsd3;
maintainers = [ maintainers.juliendehos ];
};
}