about summary refs log tree commit diff
path: root/pkgs/applications/graphics/geeqie/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-03 11:45:57 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-03 11:47:39 +0200
commit36f5ede37afd7e1a12bf83a22ede9769e8d17963 (patch)
tree979d1ffa9e571a8d2a21149d93648f9b969f3d95 /pkgs/applications/graphics/geeqie/default.nix
parent7d1c124647febf9f675accfbc511fa0fd61931eb (diff)
downloadnixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar.gz
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar.bz2
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar.lz
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar.xz
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.tar.zst
nixlib-36f5ede37afd7e1a12bf83a22ede9769e8d17963.zip
geeqie: Fix incorrect longDescription formatting
Note that longDescription should not be formatted as:

  longDescription =
    '' Bla bla
       bla bla
    '';

because this will cause the second line to have more preceding
whitespace. It should be:

  longDescription =
    ''
      Bla bla
      bla bla
    '';
Diffstat (limited to 'pkgs/applications/graphics/geeqie/default.nix')
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
index ff1e5052054d..44ca66ac5b9d 100644
--- a/pkgs/applications/graphics/geeqie/default.nix
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -35,13 +35,14 @@ stdenv.mkDerivation rec {
     description = "Geeqie, a lightweight GTK+ based image viewer";
 
     longDescription =
-      '' Geeqie is a lightweight GTK+ based image viewer for Unix like
-         operating systems.  It features: EXIF, IPTC and XMP metadata
-         browsing and editing interoperability; easy integration with other
-         software; geeqie works on files and directories, there is no need to
-         import images; fast preview for many raw image formats; tools for
-         image comparison, sorting and managing photo collection.  Geeqie was
-         initially based on GQview.
+      ''
+        Geeqie is a lightweight GTK+ based image viewer for Unix like
+        operating systems.  It features: EXIF, IPTC and XMP metadata
+        browsing and editing interoperability; easy integration with other
+        software; geeqie works on files and directories, there is no need to
+        import images; fast preview for many raw image formats; tools for
+        image comparison, sorting and managing photo collection.  Geeqie was
+        initially based on GQview.
       '';
 
     license = "GPLv2+";