summary refs log tree commit diff
path: root/pkgs/development/libraries/cpputest/default.nix
blob: 56154c060d1e71080989e22b839bac317a281234 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  version = "3.8";
  name = "cpputest-${version}";

  src = fetchurl {
    url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${name}.tar.gz";
    sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8";
  };

  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 ];
  };
}