Files
nixpkgs/pkgs/by-name/cp/cpptest/package.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

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;
};
}