19 lines
491 B
Nix
19 lines
491 B
Nix
{lib, stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cppunit";
|
|
version = "1.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
|
|
sha256 = "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://freedesktop.org/wiki/Software/cppunit/";
|
|
description = "C++ unit testing framework";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|