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

34 lines
1.1 KiB
Nix
Raw Normal View History

2015-12-02 10:30:18 -08:00
{stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
2016-08-02 09:38:21 -07:00
2015-11-15 07:05:01 -08:00
stdenv.mkDerivation rec {
name = "kcov-${version}";
2016-12-31 18:32:31 -08:00
version = "32";
2015-11-15 07:05:01 -08:00
src = fetchurl {
url = "https://github.com/SimonKagstrom/kcov/archive/v${version}.tar.gz";
2016-12-31 18:32:31 -08:00
sha256 = "0ic5w6r3cpwb32iky1jmyvfclgkqr0rnfyim7j2r6im21846sa85";
2015-11-15 07:05:01 -08:00
};
2015-12-02 10:30:18 -08:00
preConfigure = "patchShebangs src/bin-to-c-source.py";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake zlib curl elfutils python libiberty binutils ];
2016-08-02 09:38:21 -07:00
2015-11-15 07:05:01 -08:00
meta = with stdenv.lib; {
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;
maintainers = [ maintainers.gal_bolle ];
platforms = platforms.linux;
2016-08-02 09:38:21 -07:00
};
}