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 '';
This commit is contained in:
parent
7d1c124647
commit
36f5ede37a
|
@ -35,13 +35,14 @@ stdenv.mkDerivation rec {
|
||||||
description = "Geeqie, a lightweight GTK+ based image viewer";
|
description = "Geeqie, a lightweight GTK+ based image viewer";
|
||||||
|
|
||||||
longDescription =
|
longDescription =
|
||||||
'' Geeqie is a lightweight GTK+ based image viewer for Unix like
|
''
|
||||||
operating systems. It features: EXIF, IPTC and XMP metadata
|
Geeqie is a lightweight GTK+ based image viewer for Unix like
|
||||||
browsing and editing interoperability; easy integration with other
|
operating systems. It features: EXIF, IPTC and XMP metadata
|
||||||
software; geeqie works on files and directories, there is no need to
|
browsing and editing interoperability; easy integration with other
|
||||||
import images; fast preview for many raw image formats; tools for
|
software; geeqie works on files and directories, there is no need to
|
||||||
image comparison, sorting and managing photo collection. Geeqie was
|
import images; fast preview for many raw image formats; tools for
|
||||||
initially based on GQview.
|
image comparison, sorting and managing photo collection. Geeqie was
|
||||||
|
initially based on GQview.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
|
|
Loading…
Reference in New Issue