kcov: Fix indentation

This commit is contained in:
Tuomas Tynkkynen 2016-08-02 19:38:21 +03:00
parent 102ffa6be7
commit 898c3436f3

View File

@ -1,4 +1,5 @@
{stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
stdenv.mkDerivation rec {
name = "kcov-${version}";
version = "29";
@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
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";
@ -26,6 +27,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
maintainers = [ maintainers.gal_bolle ];
};
}
};
}