at 18.09-beta 558 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 version = "3.8"; 5 name = "cpputest-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${name}.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}