Skip to content

Commit

Permalink
kcov : init at 29
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentBecker committed Nov 15, 2015
1 parent 58d870d commit 7ff5826
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/development/tools/analysis/kcov/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{stdenv, fetchurl, cmake, pkgconfig, libelf, zlib, curl, elfutils, python, libiberty, binutils}:
stdenv.mkDerivation rec {
name = "kcov-${version}";
version = "29";

src = fetchurl {
url = "https://github.com/SimonKagstrom/kcov/archive/v${version}.tar.gz";
sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d";
};

buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ];

meta = with stdenv.lib; {
description = "code coverage tester for compiled programs, Python scripts and shell scripts";

longDescription =
'' Kcov is a code coverage tester for compiled programs, Python
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.
'';

homePage = http://simonkagstrom.github.io/kcov/index.html;
license = licenses.gpl2;

maintainers = [ maintainers.gal_bolle ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5674,6 +5674,8 @@ let

jenkins-job-builder = callPackage ../development/tools/continuous-integration/jenkins-job-builder { };

kcov = callPackage ../development/tools/analysis/kcov { };

lcov = callPackage ../development/tools/analysis/lcov { };

leiningen = callPackage ../development/tools/build-managers/leiningen { };
Expand Down

0 comments on commit 7ff5826

Please sign in to comment.