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

113 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-03-16 06:01:17 +00:00
, fetchurl
, meson
, ninja
, gtk3
, libexif
, libgphoto2
, libwebp
, libsoup
, libxml2
, vala
, sqlite
, webkitgtk
, pkg-config
, gnome
2019-03-16 06:01:17 +00:00
, gst_all_1
, libgudev
, libraw
, glib
2020-07-30 04:39:00 +00:00
, glib-networking
2019-03-16 06:01:17 +00:00
, json-glib
, gcr
, libgee
, gexiv2
, librest
, gettext
, desktop-file-utils
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
2019-03-16 06:01:17 +00:00
, librsvg
, wrapGAppsHook
, gobject-introspection
, itstool
, libgdata
, libchamplain
2021-01-21 08:54:47 +00:00
, libsecret
, gsettings-desktop-schemas
2019-03-16 06:01:17 +00:00
, python3
}:
2013-07-14 13:14:37 +00:00
# for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
2013-07-14 13:14:37 +00:00
2019-03-16 06:01:17 +00:00
stdenv.mkDerivation rec {
2018-03-03 00:39:58 +00:00
pname = "shotwell";
2021-01-21 08:54:47 +00:00
version = "0.31.3";
2013-07-14 13:14:37 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-01-21 08:54:47 +00:00
sha256 = "1wkahbnnfxmi1jc5zmm3h761nrnkdks8lk0rj38bfkwg90h6zqwd";
2013-07-14 13:14:37 +00:00
};
nativeBuildInputs = [
2019-03-16 06:01:17 +00:00
meson
ninja
vala
pkg-config
2019-03-16 06:01:17 +00:00
itstool
gettext
desktop-file-utils
python3
wrapGAppsHook
gobject-introspection
];
buildInputs = [
2019-03-16 06:01:17 +00:00
gtk3
libexif
libgphoto2
libwebp
libsoup
libxml2
sqlite
webkitgtk
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
libgee
libgudev
gexiv2
gsettings-desktop-schemas
2019-03-16 06:01:17 +00:00
libraw
json-glib
glib
2020-07-30 04:39:00 +00:00
glib-networking
2019-05-22 11:03:39 +00:00
gdk-pixbuf
2019-03-16 06:01:17 +00:00
librsvg
librest
gcr
gnome.adwaita-icon-theme
2019-03-16 06:01:17 +00:00
libgdata
libchamplain
2021-01-21 08:54:47 +00:00
libsecret
];
2018-09-05 00:52:24 +00: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 = gnome.updateScript {
2018-03-03 00:39:58 +00:00
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
2013-07-14 13:14:37 +00:00
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; [];
2013-07-14 13:14:37 +00:00
platforms = platforms.linux;
};
2014-03-19 20:10:15 +00:00
}