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

20 lines
561 B
Nix
Raw Normal View History

2016-05-14 22:13:31 +00:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.7.2";
name = "cpputest-${version}";
src = fetchurl {
url = "https://github.com/cpputest/cpputest/releases/download/${version}/${name}.tar.gz";
sha256 = "0lwn226d8mrppdyzcvr08vsnnp6h0mpy5kz5a475ish87az00pcc";
};
meta = {
homepage = "http://cpputest.github.io/";
description = "Unit testing and mocking framework for C/C++";
platforms = stdenv.lib.platforms.linux ;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.juliendehos ];
};
}