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