2009-04-22 01:18:09 +02:00
|
|
|
{stdenv, fetchurl}:
|
2007-10-01 17:09:29 +02:00
|
|
|
|
2017-09-16 20:35:02 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cppunit";
|
2020-02-12 05:35:03 +01:00
|
|
|
version = "1.15.1";
|
2011-10-06 12:23:27 +02:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
|
2020-02-12 05:35:03 +01:00
|
|
|
sha256 = "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2011-10-06 12:23:27 +02:00
|
|
|
|
2018-08-15 20:17:41 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-09-16 20:35:02 +02:00
|
|
|
homepage = https://freedesktop.org/wiki/Software/cppunit/;
|
2011-10-06 12:23:27 +02:00
|
|
|
description = "C++ unit testing framework";
|
2018-08-15 20:17:41 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-10-06 12:23:27 +02:00
|
|
|
};
|
2007-10-01 17:09:29 +02:00
|
|
|
}
|