2009-04-22 00:18:09 +01:00
|
|
|
{stdenv, fetchurl}:
|
2007-10-01 16:09:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-12-13 14:14:57 +00:00
|
|
|
name = "cppunit-1.12.1";
|
2011-10-06 11:23:27 +01:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2013-12-13 14:14:57 +00:00
|
|
|
url = mirror://sourceforge/cppunit/cppunit-1.12.1.tar.gz;
|
|
|
|
sha256 = "0jm49v5rmc5qw34vqs56gy8xja1dhci73bmh23cig4kcir6a0a5c";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2011-10-06 11:23:27 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://sourceforge.net/apps/mediawiki/cppunit/";
|
|
|
|
description = "C++ unit testing framework";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
2007-10-01 16:09:29 +01:00
|
|
|
}
|