forked from mirrors/nixpkgs
gthumb: init at 3.4.3 (#17826)
This commit is contained in:
parent
33c09c9f27
commit
20c0fe4900
31
pkgs/applications/graphics/gthumb/default.nix
Normal file
31
pkgs/applications/graphics/gthumb/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -13083,6 +13083,8 @@ in
|
|||
|
||||
gsimplecal = callPackage ../applications/misc/gsimplecal { };
|
||||
|
||||
gthumb = callPackage ../applications/graphics/gthumb { };
|
||||
|
||||
gtimelog = pythonPackages.gtimelog;
|
||||
|
||||
inherit (gnome3) gucharmap;
|
||||
|
|
Loading…
Reference in a new issue