nixpkgs/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";
2020-02-12 05:35:03 +01:00
version = "1.15.1";
src = fetchurl {
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
2020-02-12 05:35:03 +01:00
sha256 = "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9";
};
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;
};
}