2017-11-16 21:35:09 -08:00
|
|
|
{stdenv, fetchFromGitHub, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, libopcodes}:
|
2016-08-02 09:38:21 -07:00
|
|
|
|
2015-11-15 07:05:01 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "kcov";
|
2018-08-29 09:07:45 -07:00
|
|
|
version = "36";
|
2015-11-15 07:05:01 -08:00
|
|
|
|
2017-11-15 17:37:04 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SimonKagstrom";
|
|
|
|
repo = "kcov";
|
|
|
|
rev = "v${version}";
|
2018-08-29 09:07:45 -07:00
|
|
|
sha256 = "1q1mw5mxz041lr6qc2v4280rmx13pg1bx5r3bxz9bzs941r405r3";
|
2015-11-15 07:05:01 -08:00
|
|
|
};
|
|
|
|
|
2015-12-02 10:30:18 -08:00
|
|
|
preConfigure = "patchShebangs src/bin-to-c-source.py";
|
2017-10-10 16:01:42 -07:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ zlib curl elfutils python libiberty libopcodes ];
|
2016-08-02 09:38:21 -07:00
|
|
|
|
2017-11-15 17:37:04 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-15 07:05:01 -08:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
|
2015-11-15 07:05:01 -08:00
|
|
|
|
2016-05-07 07:46:07 -07:00
|
|
|
longDescription = ''
|
|
|
|
Kcov is a code coverage tester for compiled programs, Python
|
2015-11-15 07:05:01 -08:00
|
|
|
scripts and shell scripts. It allows collecting code coverage
|
|
|
|
information from executables without special command-line
|
|
|
|
arguments, and continuosly produces output from long-running
|
|
|
|
applications.
|
2016-05-07 07:46:07 -07:00
|
|
|
'';
|
2015-11-15 07:05:01 -08:00
|
|
|
|
2016-05-07 07:46:07 -07:00
|
|
|
homepage = http://simonkagstrom.github.io/kcov/index.html;
|
2015-11-15 07:05:01 -08:00
|
|
|
license = licenses.gpl2;
|
|
|
|
|
2018-04-27 13:22:26 -07:00
|
|
|
maintainers = with maintainers; [ gal_bolle ekleog ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = platforms.linux;
|
2016-08-02 09:38:21 -07:00
|
|
|
};
|
|
|
|
}
|