aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix125
1 files changed, 125 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix b/nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix
new file mode 100644
index 00000000000..337b8f4cba6
--- /dev/null
+++ b/nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix
@@ -0,0 +1,125 @@
+{ stdenv
+, fetchurl
+, at-spi2-core
+, babl
+, dbus
+, desktop-file-utils
+, dleyna-renderer
+, gdk-pixbuf
+, gegl
+, geocode-glib
+, gettext
+, gexiv2
+, gfbgraph
+, glib
+, gnome-online-accounts
+, gnome3
+, gobject-introspection
+, grilo
+, grilo-plugins
+, gsettings-desktop-schemas
+, gtk3
+, itstool
+, libdazzle
+, libgdata
+, libxml2
+, meson
+, ninja
+, nixosTests
+, pkgconfig
+, python3
+, tracker
+, tracker-miners
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+ pname = "gnome-photos";
+ version = "3.34.2";
+
+ outputs = [ "out" "installedTests" ];
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "06ml5sf8xhpan410msqz085hmfc7082d368pb82yq646y9pcfn9w";
+ };
+
+ patches = [
+ ./installed-tests-path.patch
+ ];
+
+ nativeBuildInputs = [
+ desktop-file-utils
+ gettext
+ gobject-introspection # for setup hook
+ glib # for setup hook
+ itstool
+ libxml2
+ meson
+ ninja
+ pkgconfig
+ (python3.withPackages (pkgs: with pkgs; [
+ dogtail
+ pygobject3
+ pyatspi
+ ]))
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ babl
+ dbus
+ dleyna-renderer
+ gdk-pixbuf
+ gegl
+ geocode-glib
+ gexiv2
+ gfbgraph
+ glib
+ gnome-online-accounts
+ gnome3.adwaita-icon-theme
+ grilo
+ grilo-plugins
+ gsettings-desktop-schemas
+ gtk3
+ libdazzle
+ libgdata
+ tracker
+ tracker-miners # For 'org.freedesktop.Tracker.Miner.Files' GSettings schema
+
+ at-spi2-core # for tests
+ ];
+
+ mesonFlags = [
+ "-Dinstalled_tests=true"
+ "-Dinstalled_test_prefix=${placeholder "installedTests"}"
+ ];
+
+ postPatch = ''
+ chmod +x meson_post_install.py
+ patchShebangs meson_post_install.py
+ patchShebangs tests/basic.py
+ '';
+
+ postFixup = ''
+ wrapGApp "${placeholder "installedTests"}/libexec/installed-tests/gnome-photos/basic.py"
+ '';
+
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ };
+
+ tests = {
+ installed-tests = nixosTests.installed-tests.gnome-photos;
+ };
+ };
+
+ meta = with stdenv.lib; {
+ description = "Access, organize and share your photos";
+ homepage = "https://wiki.gnome.org/Apps/Photos";
+ license = licenses.gpl3Plus;
+ maintainers = teams.gnome.members;
+ platforms = platforms.linux;
+ };
+}