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

20 lines
558 B
Nix
Raw Normal View History

2016-05-14 22:13:31 +00:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2016-06-01 15:57:25 +00:00
version = "3.8";
2016-05-14 22:13:31 +00:00
name = "cpputest-${version}";
src = fetchurl {
2016-06-01 15:57:25 +00:00
url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${name}.tar.gz";
sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8";
2016-05-14 22:13:31 +00:00
};
meta = {
homepage = http://cpputest.github.io/;
2016-05-14 22:13:31 +00: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 ];
};
}