kcov: fix issue #11399

+3 -2
+3 -2
pkgs/development/tools/analysis/kcov/default.nix
··· 1 - {stdenv, fetchurl, cmake, pkgconfig, libelf, zlib, curl, elfutils, python, libiberty, binutils}: 1 + {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}: 2 2 stdenv.mkDerivation rec { 3 3 name = "kcov-${version}"; 4 4 version = "29"; ··· 8 8 sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d"; 9 9 }; 10 10 11 - buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ]; 11 + preConfigure = "patchShebangs src/bin-to-c-source.py"; 12 + buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; 12 13 13 14 meta = with stdenv.lib; { 14 15 description = "code coverage tester for compiled programs, Python scripts and shell scripts";