summary refs log tree commit diff
path: root/pkgs/development/libraries/cppunit/default.nix
blob: bf65be7157559f63b905e6c27af883ec2a50f0bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{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;
  };
}