nixpkgs/pkgs/applications/graphics/shotwell/default.nix

51 lines
1.7 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, meson, ninja, gtk3, libexif, libgphoto2, libsoup, libxml2, vala, sqlite
, webkitgtk, pkgconfig, gnome3, gst_all_1, libgudev, libraw, glib, json-glib
, gettext, desktop-file-utils, gdk_pixbuf, librsvg, wrapGAppsHook
, gobject-introspection, itstool, libgdata, python3 }:
2013-07-14 14:14:37 +01:00
# for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
2013-07-14 14:14:37 +01:00
2018-03-03 00:39:58 +00:00
let
pname = "shotwell";
2018-09-05 01:52:24 +01:00
version = "0.30.1";
2018-03-03 00:39:58 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
2013-07-14 14:14:37 +01:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2018-09-05 01:52:24 +01:00
sha256 = "01hsmig06hjv34yf9y60hv2gml593xfkza4ilq4b22gr8l4v2qip";
2013-07-14 14:14:37 +01:00
};
nativeBuildInputs = [
meson ninja vala pkgconfig itstool gettext desktop-file-utils python3 wrapGAppsHook gobject-introspection
];
buildInputs = [
2018-03-03 00:39:58 +00:00
gtk3 libexif libgphoto2 libsoup libxml2 sqlite webkitgtk
gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.libgee
libgudev gnome3.gexiv2 gnome3.gsettings-desktop-schemas
libraw json-glib glib gdk_pixbuf librsvg gnome3.rest
gnome3.gcr gnome3.defaultIconTheme libgdata
];
2018-09-05 01:52:24 +01:00
postPatch = ''
chmod +x build-aux/meson/postinstall.py # patchShebangs requires executable file
patchShebangs build-aux/meson/postinstall.py
'';
2018-03-03 00:39:58 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
2013-07-14 14:14:37 +01:00
meta = with stdenv.lib; {
description = "Popular photo organizer for the GNOME desktop";
homepage = https://wiki.gnome.org/Apps/Shotwell;
2014-03-19 20:10:15 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [domenkozar];
2013-07-14 14:14:37 +01:00
platforms = platforms.linux;
};
2014-03-19 20:10:15 +00:00
}