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