1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "cpptest-2.0.0";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/project/cpptest/cpptest/${name}/${name}.tar.gz";
8 sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm";
9 };
10
11 meta = with lib; {
12 homepage = "http://cpptest.sourceforge.net/";
13 description = "Simple C++ unit testing framework";
14 maintainers = with maintainers; [ bosu ];
15 license = lib.licenses.lgpl3;
16 platforms = platforms.all;
17 };
18}