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