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