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, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "kcov-${version}"; name = "kcov-${version}";
version = "29"; version = "29";
@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
preConfigure = "patchShebangs src/bin-to-c-source.py"; preConfigure = "patchShebangs src/bin-to-c-source.py";
buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Code coverage tester for compiled programs, Python scripts and shell scripts"; description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
@ -26,6 +27,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ maintainers.gal_bolle ]; maintainers = [ maintainers.gal_bolle ];
}; };
}
}