1{stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 name = "cppunit-${version}";
5 version = "1.14.0";
6
7 src = fetchurl {
8 url = "https://dev-www.libreoffice.org/src/${name}.tar.gz";
9 sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
10 };
11
12 meta = with stdenv.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}