1{lib, stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 pname = "cppunit";
5 version = "1.15.1";
6
7 src = fetchurl {
8 url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
9 sha256 = "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9";
10 };
11
12 meta = with lib; {
13 homepage = "https://freedesktop.org/wiki/Software/cppunit/";
14 description = "C++ unit testing framework";
15 license = licenses.lgpl21;
16 platforms = platforms.linux ++ platforms.darwin;
17 };
18}