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

20 lines
562 B
Nix
Raw Normal View History

2016-05-15 01:13:31 +03:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2016-06-01 18:57:25 +03:00
version = "3.8";
pname = "cpputest";
2016-05-15 01:13:31 +03:00
src = fetchurl {
url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${pname}-${version}.tar.gz";
2016-06-01 18:57:25 +03:00
sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8";
2016-05-15 01:13:31 +03:00
};
meta = {
homepage = "http://cpputest.github.io/";
2016-05-15 01:13:31 +03:00
description = "Unit testing and mocking framework for C/C++";
platforms = stdenv.lib.platforms.linux ;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.juliendehos ];
};
}