summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 19:38:21 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 21:17:44 +0300
commit898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc (patch)
tree8ca79beb13aa6bdc11a6b4d82ab8f39fa9d5ca00
parent102ffa6be7de5e2e24142c3e10653f8f91d1564e (diff)
downloadnixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar.gz
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar.bz2
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar.lz
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar.xz
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.tar.zst
nixpkgs-898c3436f3fb4d9ef3c79e5fc4820d0d4ebdc4bc.zip
kcov: Fix indentation
-rw-r--r--pkgs/development/tools/analysis/kcov/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/analysis/kcov/default.nix b/pkgs/development/tools/analysis/kcov/default.nix
index ffb2896da35..fb68ce5d84b 100644
--- a/pkgs/development/tools/analysis/kcov/default.nix
+++ b/pkgs/development/tools/analysis/kcov/default.nix
@@ -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 ];
-    };
-    
-  }
+  };
+}