2021-03-26 09:19:46 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, zlib, curl, elfutils, python3, libiberty, libopcodes}:
|
2016-08-02 16:38:21 +00:00
|
|
|
|
2015-11-15 15:05:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "kcov";
|
2021-04-30 18:44:04 +00:00
|
|
|
version = "38";
|
2015-11-15 15:05:01 +00:00
|
|
|
|
2017-11-16 01:37:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SimonKagstrom";
|
|
|
|
repo = "kcov";
|
|
|
|
rev = "v${version}";
|
2021-04-30 18:44:04 +00:00
|
|
|
sha256 = "sha256-6LoIo2/yMUz8qIpwJVcA3qZjjF+8KEM1MyHuyHsQD38=";
|
2015-11-15 15:05:01 +00:00
|
|
|
};
|
|
|
|
|
2015-12-02 18:30:18 +00:00
|
|
|
preConfigure = "patchShebangs src/bin-to-c-source.py";
|
2021-03-26 09:19:46 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config python3 ];
|
2017-10-10 23:01:42 +00:00
|
|
|
|
2021-03-26 09:19:46 +00:00
|
|
|
buildInputs = [ curl zlib elfutils libiberty libopcodes ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2016-08-02 16:38:21 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
|
2015-11-15 15:05:01 +00:00
|
|
|
|
2016-05-07 14:46:07 +00:00
|
|
|
longDescription = ''
|
|
|
|
Kcov is a code coverage tester for compiled programs, Python
|
2015-11-15 15:05:01 +00: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 14:46:07 +00:00
|
|
|
'';
|
2015-11-15 15:05:01 +00:00
|
|
|
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://simonkagstrom.github.io/kcov/index.html";
|
2015-11-15 15:05:01 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
|
2018-04-27 20:22:26 +00:00
|
|
|
maintainers = with maintainers; [ gal_bolle ekleog ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.linux;
|
2016-08-02 16:38:21 +00:00
|
|
|
};
|
|
|
|
}
|