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

126 lines
2.2 KiB
Nix
Raw Normal View History

{ 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
, gnome3
2019-08-23 01:16:28 +00:00
, gobject-introspection
, grilo
, grilo-plugins
, gsettings-desktop-schemas
, gtk3
, itstool
, libdazzle
, libgdata
, libxml2
, meson
, ninja
2019-08-23 01:16:28 +00:00
, nixosTests
, pkgconfig
, python3
, tracker
, tracker-miners
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
2018-03-15 12:22:47 +00:00
pname = "gnome-photos";
2020-05-21 12:38:37 +00:00
version = "3.34.2";
2019-08-23 01:16:28 +00:00
outputs = [ "out" "installedTests" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-05-21 12:38:37 +00:00
sha256 = "06ml5sf8xhpan410msqz085hmfc7082d368pb82yq646y9pcfn9w";
};
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
pkgconfig
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
gnome3.adwaita-icon-theme
grilo
grilo-plugins
gsettings-desktop-schemas
gtk3
libdazzle
libgdata
tracker
2018-03-15 12:22:47 +00:00
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 = gnome3.updateScript {
packageName = pname;
};
2019-08-23 01:16:28 +00:00
tests = {
installed-tests = nixosTests.gnome-photos;
};
2018-03-15 12:22:47 +00:00
};
meta = with stdenv.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;
};
}