nixpkgs/pkgs/development/tools/analysis/kcov/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{stdenv, fetchFromGitHub, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, libopcodes}:
2016-08-02 17:38:21 +01:00
2015-11-15 15:05:01 +00:00
stdenv.mkDerivation rec {
name = "kcov-${version}";
2017-11-16 01:37:04 +00:00
version = "34";
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}";
sha256 = "1i4pn5na8m308pssk8585nmqi8kwd63a9h2rkjrn4w78ibmxvj01";
2015-11-15 15:05:01 +00:00
};
2015-12-02 18:30:18 +00:00
preConfigure = "patchShebangs src/bin-to-c-source.py";
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ zlib curl elfutils python libiberty libopcodes ];
2016-08-02 17:38:21 +01:00
2017-11-16 01:37:04 +00:00
enableParallelBuilding = true;
2015-11-15 15:05:01 +00:00
meta = with stdenv.lib; {
description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
2015-11-15 15:05:01 +00:00
2016-05-07 15:46:07 +01: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 15:46:07 +01:00
'';
2015-11-15 15:05:01 +00:00
2016-05-07 15:46:07 +01:00
homepage = http://simonkagstrom.github.io/kcov/index.html;
2015-11-15 15:05:01 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.gal_bolle ];
platforms = platforms.linux;
2016-08-02 17:38:21 +01:00
};
}