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