linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / cppunit / default.nix
blob3cafa1c75d76a6550035c81eff7bf804b0e1035a
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   meta = with 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   };