summary refs log tree commit diff
path: root/pkgs/applications/graphics/geeqie/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-11-25 08:58:42 +0000
committerLudovic Courtès <ludo@gnu.org>2009-11-25 08:58:42 +0000
commitaca6f1740023d801593e73259498e16f352c30c4 (patch)
tree0d0527c9f217fef4df72ee348679494413d8aefe /pkgs/applications/graphics/geeqie/default.nix
parent2ffa48af259c2fc438b16aad1f27557625d7430b (diff)
downloadnixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar.gz
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar.bz2
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar.lz
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar.xz
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.tar.zst
nixpkgs-aca6f1740023d801593e73259498e16f352c30c4.zip
Add Geeqie, a GQview fork.
svn path=/nixpkgs/trunk/; revision=18613
Diffstat (limited to 'pkgs/applications/graphics/geeqie/default.nix')
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
new file mode 100644
index 00000000000..dfa83c77121
--- /dev/null
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, pkgconfig, gtk, libpng, exiv2, lcms
+, intltool, gettext }:
+
+stdenv.mkDerivation rec {
+  name = "geeqie-1.0beta2";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/geeqie/${name}.tar.gz";
+    sha256 = "13h924iykmxwgpx562lrsh2j78fnzyyfmg4w7qgj9vbjq18nq7fd";
+  };
+
+  buildInputs = [ pkgconfig gtk libpng exiv2 lcms intltool gettext ];
+
+  meta = {
+    description = "Geeqie, a lightweight GTK+ based image viewe";
+
+    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.
+      '';
+
+    license = "GPLv2+";
+
+    homepage = http://geeqie.sourceforge.net;
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+    platforms = stdenv.lib.platforms.gnu;
+  };
+}