nixpkgs-suyu/pkgs/development/libraries/cppunit/default.nix

19 lines
491 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2017-09-16 20:35:02 +02:00
stdenv.mkDerivation rec {
pname = "cppunit";
2019-12-23 07:39:24 +01:00
version = "1.15.0";
src = fetchurl {
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
2019-12-23 07:39:24 +01:00
sha256 = "08j9hc11yl07ginsf282pshn6zpy96yhzf7426sfn10f8gdxyq8w";
};
2018-08-15 20:17:41 +02:00
meta = with stdenv.lib; {
2017-09-16 20:35:02 +02:00
homepage = https://freedesktop.org/wiki/Software/cppunit/;
description = "C++ unit testing framework";
2018-08-15 20:17:41 +02:00
license = licenses.lgpl21;
platforms = platforms.linux ++ platforms.darwin;
};
}