nixpkgs/pkgs/applications/graphics/gnome-photos/default.nix

128 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
2019-08-23 01:16:28 +00:00
, at-spi2-core
, babl
, dbus
, desktop-file-utils
, dleyna-renderer
, gdk-pixbuf
, gegl
, geocode-glib
, gettext
, gexiv2
, gfbgraph
, glib
, gnome-online-accounts
, gnome
2019-08-23 01:16:28 +00:00
, gobject-introspection
, grilo
, grilo-plugins
, gsettings-desktop-schemas
, gtk3
, itstool
, libdazzle
2021-03-21 00:32:57 +00:00
, libhandy
, libgdata
, libxml2
, meson
, ninja
2019-08-23 01:16:28 +00:00
, nixosTests
, pkg-config
, python3
2020-10-23 21:09:27 +00:00
, tracker
, tracker-miners
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
2018-03-15 12:22:47 +00:00
pname = "gnome-photos";
2021-03-21 00:32:57 +00:00
version = "40.0";
2019-08-23 01:16:28 +00:00
outputs = [ "out" "installedTests" ];
src = fetchurl {
2021-03-21 00:32:57 +00:00
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "1bzi79plw6ji6qlckhxnwfnswy6jpnhzmmyanml2i2xg73hp6bg0";
};
2019-08-23 01:16:28 +00:00
patches = [
./installed-tests-path.patch
];
nativeBuildInputs = [
desktop-file-utils
gettext
2019-08-23 01:16:28 +00:00
gobject-introspection # for setup hook
glib # for setup hook
itstool
libxml2
meson
ninja
pkg-config
2019-08-23 01:16:28 +00:00
(python3.withPackages (pkgs: with pkgs; [
dogtail
pygobject3
pyatspi
]))
wrapGAppsHook
];
2018-03-15 12:22:47 +00:00
buildInputs = [
babl
dbus
dleyna-renderer
gdk-pixbuf
gegl
geocode-glib
gexiv2
gfbgraph
glib
gnome-online-accounts
gnome.adwaita-icon-theme
grilo
grilo-plugins
gsettings-desktop-schemas
gtk3
libdazzle
2021-03-21 00:32:57 +00:00
libhandy
libgdata
2020-10-23 21:09:27 +00:00
tracker
tracker-miners # For 'org.freedesktop.Tracker.Miner.Files' GSettings schema
2019-08-23 01:16:28 +00:00
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
2019-08-23 01:16:28 +00:00
patchShebangs tests/basic.py
'';
postFixup = ''
wrapGApp "${placeholder "installedTests"}/libexec/installed-tests/gnome-photos/basic.py"
'';
2018-03-15 12:22:47 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-03-15 12:22:47 +00:00
packageName = pname;
};
2019-08-23 01:16:28 +00:00
tests = {
2020-08-19 21:43:13 +00:00
installed-tests = nixosTests.installed-tests.gnome-photos;
2019-08-23 01:16:28 +00:00
};
2018-03-15 12:22:47 +00:00
};
meta = with lib; {
2018-03-15 12:22:47 +00:00
description = "Access, organize and share your photos";
homepage = "https://wiki.gnome.org/Apps/Photos";
2018-03-15 12:22:47 +00:00
license = licenses.gpl3Plus;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
}