Skip to content

Commit

Permalink
kcov: 32 -> 34
Browse files Browse the repository at this point in the history
Tracking issue: #31696
  • Loading branch information
orivej committed Nov 16, 2017
1 parent 97800cd commit 30fa830
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pkgs/development/tools/analysis/kcov/default.nix
@@ -1,18 +1,22 @@
{stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
{stdenv, fetchFromGitHub, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:

stdenv.mkDerivation rec {
name = "kcov-${version}";
version = "32";
version = "34";

src = fetchurl {
url = "https://github.com/SimonKagstrom/kcov/archive/v${version}.tar.gz";
sha256 = "0ic5w6r3cpwb32iky1jmyvfclgkqr0rnfyim7j2r6im21846sa85";
src = fetchFromGitHub {
owner = "SimonKagstrom";
repo = "kcov";
rev = "v${version}";
sha256 = "1i4pn5na8m308pssk8585nmqi8kwd63a9h2rkjrn4w78ibmxvj01";
};

preConfigure = "patchShebangs src/bin-to-c-source.py";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake zlib curl elfutils python libiberty binutils ];

enableParallelBuilding = true;

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

Expand Down

0 comments on commit 30fa830

Please sign in to comment.