Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "cpptest"; 9 version = "2.0.0"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/project/cpptest/cpptest/cpptest-${version}/cpptest-${version}.tar.gz"; 13 sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm"; 14 }; 15 16 meta = with lib; { 17 homepage = "http://cpptest.sourceforge.net/"; 18 description = "Simple C++ unit testing framework"; 19 maintainers = with maintainers; [ bosu ]; 20 license = lib.licenses.lgpl3; 21 platforms = platforms.all; 22 }; 23}