summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkimageview
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-10-19 12:50:41 +0000
committerLudovic Courtès <ludo@gnu.org>2009-10-19 12:50:41 +0000
commit8ca944821175d7d0c22cd22fb2b889a9ed582195 (patch)
treed7d0b04af25f3806b2b1101321d6e05c49dc3f8f /pkgs/development/libraries/gtkimageview
parent97393c1d4cdafa34870a7c6715976ce7bade9b31 (diff)
downloadnixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar.gz
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar.bz2
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar.lz
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar.xz
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.tar.zst
nixpkgs-8ca944821175d7d0c22cd22fb2b889a9ed582195.zip
Add GtkImageView.
svn path=/nixpkgs/trunk/; revision=17880
Diffstat (limited to 'pkgs/development/libraries/gtkimageview')
-rw-r--r--pkgs/development/libraries/gtkimageview/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gtkimageview/default.nix b/pkgs/development/libraries/gtkimageview/default.nix
new file mode 100644
index 00000000000..eb2335dac43
--- /dev/null
+++ b/pkgs/development/libraries/gtkimageview/default.nix
@@ -0,0 +1,32 @@
+{ fetchurl, stdenv, pkgconfig, gtk }:
+
+stdenv.mkDerivation rec {
+  name = "gtkimageview-1.6.4";
+
+  src = fetchurl {
+    url = "http://trac.bjourne.webfactional.com/chrome/common/releases/${name}.tar.gz";
+    sha256 = "1if3yh5z6nkv5wnkk0qyy9pkk03vn5rqbfk23q87kj39pqscgr37";
+  };
+
+  buildInputs = [ pkgconfig gtk ];
+
+  doCheck = true;
+
+  meta = {
+    homepage = http://trac.bjourne.webfactional.com/;
+
+    description = "The GtkImageView image viewer widget for GTK+";
+
+    longDescription =
+      '' GtkImageView is a simple image viewer widget for GTK+.  Similar to
+         the image viewer panes in gThumb or Eye of Gnome.  It makes writing
+         image viewing and editing applications easy.  Among its features
+         are: mouse and keyboard zooming; scrolling and dragging; adjustable
+         interpolation; GIF animation support.
+       '';
+
+    license = "LGPLv2+";
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+  };
+}