mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchurl, gnome3, itstool, libxml2, pkgconfig, intltool,
|
|
exiv2, libjpeg, libtiff, gstreamer, libraw, libsoup, libsecret,
|
|
libchamplain, librsvg, libwebp, json_glib, webkit, lcms2, bison,
|
|
flex, hicolor_icon_theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "gthumb";
|
|
version = "${major}.4";
|
|
major = "3.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${major}/${name}.tar.xz";
|
|
sha256 = "154bdc8c1940209f1e3d9c60184efef45b0d24f5f7f7f59b819e9c08e19c2981";
|
|
};
|
|
|
|
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 hicolor_icon_theme defaultIconTheme ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|