tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kcov: fix issue #11399
Florent Becker
10 years ago
fa858649
7ff5826e
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
analysis
kcov
default.nix
+3
-2
pkgs/development/tools/analysis/kcov/default.nix
···
1
-
{stdenv, fetchurl, cmake, pkgconfig, libelf, zlib, curl, elfutils, python, libiberty, binutils}:
2
stdenv.mkDerivation rec {
3
name = "kcov-${version}";
4
version = "29";
···
8
sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d";
9
};
10
11
-
buildInputs = [ cmake pkgconfig libelf zlib curl elfutils python libiberty binutils ];
0
12
13
meta = with stdenv.lib; {
14
description = "code coverage tester for compiled programs, Python scripts and shell scripts";
···
1
+
{stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
2
stdenv.mkDerivation rec {
3
name = "kcov-${version}";
4
version = "29";
···
8
sha256 = "0nspf1bfq8zv7zmcmvkbgg3c90k10qcd56gyg8ln5z64nadvha9d";
9
};
10
11
+
preConfigure = "patchShebangs src/bin-to-c-source.py";
12
+
buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ];
13
14
meta = with stdenv.lib; {
15
description = "code coverage tester for compiled programs, Python scripts and shell scripts";