Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 560 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 version = "3.8"; 5 pname = "cpputest"; 6 7 src = fetchurl { 8 url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${pname}-${version}.tar.gz"; 9 sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8"; 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}