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