mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
kcov: fix issue #11399
This commit is contained in:
parent
7ff5826e08
commit
fa8586495d
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user