gthumb: init at 3.4.3 (#17826)

authored by Miguel Madrid and committed by Rok Garbas 20c0fe49 33c09c9f

+33
+31
pkgs/applications/graphics/gthumb/default.nix
··· 1 + { stdenv, fetchurl, gnome3, itstool, libxml2, pkgconfig, intltool, 2 + exiv2, libjpeg, libtiff, gstreamer, libraw, libsoup, libsecret, 3 + libchamplain, librsvg, libwebp, json_glib, webkit, lcms2, bison, 4 + flex, wrapGAppsHook }: 5 + 6 + stdenv.mkDerivation rec { 7 + name = "${pname}-${version}"; 8 + pname = "gthumb"; 9 + version = "${major}.3"; 10 + major = "3.4"; 11 + 12 + src = fetchurl { 13 + url = "mirror://gnome/sources/${pname}/${major}/${name}.tar.xz"; 14 + sha256 = "0pc2xl6kwhi5l3d0dj6nzdcj2vpihs7y1s3l1hwir8zy7cpx23y1"; 15 + }; 16 + 17 + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 18 + 19 + buildInputs = with gnome3; 20 + [ itstool libxml2 intltool glib gtk gsettings_desktop_schemas dconf 21 + exiv2 libjpeg libtiff gstreamer libraw libsoup libsecret libchamplain 22 + librsvg libwebp json_glib webkit lcms2 bison flex ]; 23 + 24 + meta = with stdenv.lib; { 25 + homepage = https://wiki.gnome.org/Apps/gthumb; 26 + description = "Image browser and viewer for GNOME"; 27 + platforms = platforms.linux; 28 + license = licenses.gpl2; 29 + maintainers = [ maintainers.mimadrid ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 13083 13083 13084 13084 gsimplecal = callPackage ../applications/misc/gsimplecal { }; 13085 13085 13086 + gthumb = callPackage ../applications/graphics/gthumb { }; 13087 + 13086 13088 gtimelog = pythonPackages.gtimelog; 13087 13089 13088 13090 inherit (gnome3) gucharmap;