forked from mirrors/nixpkgs
cpputest: cleanup
This commit is contained in:
parent
ac8f57f172
commit
5c6af7b729
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue