forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58d870d
commit 7ff5826
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters