about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-05-07 16:46:07 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-05-08 00:45:06 +0200
commit70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4 (patch)
tree644aa818cbb5ea49f16e8582742a8705eaa0681e /pkgs/development/tools/analysis
parent519d99f9750932e5e6a31e51265d68556cb093ea (diff)
downloadnixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar.gz
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar.bz2
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar.lz
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar.xz
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.tar.zst
nixlib-70a02d64bcbcec14a44e8b302ee32be4dcfd6cf4.zip
kcov: meta.{homePage -> homepage}
Diffstat (limited to 'pkgs/development/tools/analysis')
-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 4a33a0cd8f33..00eb5b9afc13 100644
--- a/pkgs/development/tools/analysis/kcov/default.nix
+++ b/pkgs/development/tools/analysis/kcov/default.nix
@@ -14,15 +14,15 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "code coverage tester for compiled programs, Python scripts and shell scripts";
 
-    longDescription =
-      '' Kcov is a code coverage tester for compiled programs, Python
+    longDescription = ''
+      Kcov is a code coverage tester for compiled programs, Python
       scripts and shell scripts. It allows collecting code coverage
       information from executables without special command-line
       arguments, and continuosly produces output from long-running
       applications.
-      '';
+    '';
 
-    homePage = http://simonkagstrom.github.io/kcov/index.html;
+    homepage = http://simonkagstrom.github.io/kcov/index.html;
     license = licenses.gpl2;
 
     maintainers = [ maintainers.gal_bolle ];