2009-04-22 00:18:09 +01:00
|
|
|
{stdenv, fetchurl}:
|
2007-10-01 16:09:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-12-27 07:25:39 +00:00
|
|
|
name = "cppunit-1.13.2";
|
2011-10-06 11:23:27 +01:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2013-12-27 07:25:39 +00:00
|
|
|
url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz;
|
|
|
|
sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2011-10-06 11:23:27 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://sourceforge.net/apps/mediawiki/cppunit/;
|
2011-10-06 11:23:27 +01:00
|
|
|
description = "C++ unit testing framework";
|
2014-01-13 14:54:57 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-10-06 11:23:27 +01:00
|
|
|
};
|
2007-10-01 16:09:29 +01:00
|
|
|
}
|