567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
24 lines
543 B
Nix
24 lines
543 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cpptest";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/cpptest/cpptest/cpptest-${version}/cpptest-${version}.tar.gz";
|
|
sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://cpptest.sourceforge.net/";
|
|
description = "Simple C++ unit testing framework";
|
|
maintainers = with lib.maintainers; [ bosu ];
|
|
license = lib.licenses.lgpl3;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|