Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / cppunit / default.nix
blobfba624a861d778f29552578c87c89588093a4266
1 {lib, stdenv, fetchurl}:
3 stdenv.mkDerivation rec {
4   pname = "cppunit";
5   version = "1.15.1";
7   src = fetchurl {
8     url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
9     sha256 = "19qpqzy66bq76wcyadmi3zahk5v1ll2kig1nvg96zx9padkcdic9";
10   };
12   # Avoid blanket -Werror to evade build failures on less
13   # tested compilers.
14   configureFlags = [ "--disable-werror" ];
16   meta = with lib; {
17     homepage = "https://freedesktop.org/wiki/Software/cppunit/";
18     description = "C++ unit testing framework";
19     license = licenses.lgpl21;
20     platforms = platforms.linux ++ platforms.darwin;
21   };