kcov: fix issue #11399

This commit is contained in:
Florent Becker 2015-12-02 19:30:18 +01:00
parent 7ff5826e08
commit fa8586495d

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, cmake, pkgconfig, libelf, zlib, curl, elfutils, python, libiberty, binutils}:
{stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
stdenv.mkDerivation rec {
name = "kcov-${version}";
version = "29";
@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d";
};
buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ];
preConfigure = "patchShebangs src/bin-to-c-source.py";
buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ];
meta = with stdenv.lib; {
description = "code coverage tester for compiled programs, Python scripts and shell scripts";