aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/graphics/gthumb
diff options
context:
space:
mode:
authorMiguel Madrid <mimadrid@ucm.es>2016-08-19 13:32:27 +0200
committerRok Garbas <rok@garbas.si>2016-08-19 13:32:27 +0200
commit20c0fe49004d1c1da7ad15d4161584fc236affee (patch)
treea0f30a2c9375b8b4771fe66ae7b27199cca456ef /pkgs/applications/graphics/gthumb
parent33c09c9f27660bf6f7cfbde39df35e4d6d74a711 (diff)
gthumb: init at 3.4.3 (#17826)
Diffstat (limited to 'pkgs/applications/graphics/gthumb')
-rw-r--r--pkgs/applications/graphics/gthumb/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/gthumb/default.nix b/pkgs/applications/graphics/gthumb/default.nix
new file mode 100644
index 000000000000..76086b87eb2b
--- /dev/null
+++ b/pkgs/applications/graphics/gthumb/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, gnome3, itstool, libxml2, pkgconfig, intltool,
+ exiv2, libjpeg, libtiff, gstreamer, libraw, libsoup, libsecret,
+ libchamplain, librsvg, libwebp, json_glib, webkit, lcms2, bison,
+ flex, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "gthumb";
+ version = "${major}.3";
+ major = "3.4";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${major}/${name}.tar.xz";
+ sha256 = "0pc2xl6kwhi5l3d0dj6nzdcj2vpihs7y1s3l1hwir8zy7cpx23y1";
+ };
+
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+
+ buildInputs = with gnome3;
+ [ itstool libxml2 intltool glib gtk gsettings_desktop_schemas dconf
+ exiv2 libjpeg libtiff gstreamer libraw libsoup libsecret libchamplain
+ librsvg libwebp json_glib webkit lcms2 bison flex ];
+
+ meta = with stdenv.lib; {
+ homepage = https://wiki.gnome.org/Apps/gthumb;
+ description = "Image browser and viewer for GNOME";
+ platforms = platforms.linux;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.mimadrid ];
+ };
+}