mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19 lines
491 B
Nix
19 lines
491 B
Nix
{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 stdenv.lib; {
|
|
homepage = https://freedesktop.org/wiki/Software/cppunit/;
|
|
description = "C++ unit testing framework";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|