Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 19 lines 562 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 version = "4.0"; 5 pname = "cpputest"; 6 7 src = fetchurl { 8 url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${pname}-${version}.tar.gz"; 9 sha256 = "1xslavlb1974y5xvs8n1j9zkk05dlw8imy4saasrjlmibl895ii1"; 10 }; 11 12 meta = { 13 homepage = "http://cpputest.github.io/"; 14 description = "Unit testing and mocking framework for C/C++"; 15 platforms = stdenv.lib.platforms.linux ; 16 license = stdenv.lib.licenses.bsd3; 17 maintainers = [ stdenv.lib.maintainers.juliendehos ]; 18 }; 19}