2015-07-16 16:43:36 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cpptest-1.1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-28 13:07:42 +01:00
|
|
|
url = "mirror://sourceforge/project/cpptest/cpptest/${name}/${name}.tar.gz";
|
2015-07-16 16:43:36 +02:00
|
|
|
sha256 = "09v070a9dv6zq6hgj4v67i31zsis3s96psrnhlq9g4vhdcaxykwy";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://cpptest.sourceforge.net/;
|
|
|
|
description = "Simple C++ unit testing framework";
|
|
|
|
maintainers = with maintainers; [ bosu ];
|
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2015-07-16 16:43:36 +02:00
|
|
|
};
|
|
|
|
}
|