at 23.11-beta 538 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "cpptest"; 5 version = "2.0.0"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/project/cpptest/cpptest/cpptest-${version}/cpptest-${version}.tar.gz"; 9 sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm"; 10 }; 11 12 meta = with lib; { 13 homepage = "http://cpptest.sourceforge.net/"; 14 description = "Simple C++ unit testing framework"; 15 maintainers = with maintainers; [ bosu ]; 16 license = lib.licenses.lgpl3; 17 platforms = platforms.all; 18 }; 19}