2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-11-19 00:46:05 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gettext
|
|
|
|
, fetchurl
|
2020-10-02 12:18:23 +01:00
|
|
|
, fetchpatch
|
2019-11-19 00:46:05 +00:00
|
|
|
, evince
|
|
|
|
, gjs
|
2021-01-17 02:21:50 +00:00
|
|
|
, pkg-config
|
2019-11-19 00:46:05 +00:00
|
|
|
, gtk3
|
|
|
|
, glib
|
2020-10-23 22:57:59 +01:00
|
|
|
, tracker
|
|
|
|
, tracker-miners
|
2019-11-19 00:46:05 +00:00
|
|
|
, itstool
|
|
|
|
, libxslt
|
|
|
|
, webkitgtk
|
|
|
|
, libgdata
|
|
|
|
, gnome-desktop
|
|
|
|
, libzapojit
|
|
|
|
, libgepub
|
2021-05-07 22:18:14 +01:00
|
|
|
, gnome
|
2019-11-19 00:46:05 +00:00
|
|
|
, gdk-pixbuf
|
|
|
|
, libsoup
|
|
|
|
, docbook_xsl
|
|
|
|
, docbook_xml_dtd_42
|
|
|
|
, gobject-introspection
|
2020-09-10 19:38:25 +01:00
|
|
|
, inkscape
|
2019-11-19 00:46:05 +00:00
|
|
|
, poppler_utils
|
|
|
|
, desktop-file-utils
|
|
|
|
, wrapGAppsHook
|
|
|
|
, python3
|
2020-10-02 12:18:23 +01:00
|
|
|
, appstream-glib
|
2019-11-19 00:46:05 +00:00
|
|
|
, gsettings-desktop-schemas
|
|
|
|
}:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-documents";
|
2019-11-19 00:46:05 +00:00
|
|
|
version = "3.34.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "mirror://gnome/sources/gnome-documents/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-11-19 00:46:05 +00:00
|
|
|
sha256 = "1qph567mapg3s1a26k7b8y57g9bklhj2mh8xm758z9zkms20xafq";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2020-10-02 12:18:23 +01:00
|
|
|
patches = [
|
|
|
|
# Fix inkscape 1.0 usage
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-documents/commit/0f55a18c40a61e6ae4ec4652604775f139892350.diff";
|
|
|
|
sha256 = "1yrisq69dl1dn7639drlbza20a5ic6xg04ksr9iq4sxdx3xj3d8s";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-11-19 00:46:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config
|
2019-11-19 00:46:05 +00:00
|
|
|
gettext
|
|
|
|
itstool
|
|
|
|
libxslt
|
|
|
|
desktop-file-utils
|
|
|
|
docbook_xsl
|
|
|
|
docbook_xml_dtd_42
|
|
|
|
wrapGAppsHook
|
|
|
|
python3
|
2020-10-02 12:18:23 +01:00
|
|
|
appstream-glib
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2019-11-19 00:46:05 +00:00
|
|
|
# building getting started
|
2020-09-10 19:38:25 +01:00
|
|
|
inkscape
|
2019-11-19 00:46:05 +00:00
|
|
|
poppler_utils
|
2019-03-06 00:29:53 +00:00
|
|
|
];
|
2018-03-14 05:26:39 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2019-11-19 00:46:05 +00:00
|
|
|
gtk3
|
|
|
|
glib
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gdk-pixbuf
|
2021-05-07 22:18:14 +01:00
|
|
|
gnome.adwaita-icon-theme
|
2019-11-19 00:46:05 +00:00
|
|
|
evince
|
|
|
|
libsoup
|
|
|
|
webkitgtk
|
|
|
|
gjs
|
|
|
|
gobject-introspection
|
2020-10-23 22:57:59 +01:00
|
|
|
tracker
|
|
|
|
tracker-miners
|
2019-11-19 00:46:05 +00:00
|
|
|
libgdata
|
|
|
|
gnome-desktop
|
|
|
|
libzapojit
|
|
|
|
libgepub
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dgetting_started=true"
|
2018-03-14 05:26:39 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
2018-08-30 18:47:11 +01:00
|
|
|
substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.bin}/bin/gapplication"
|
2016-09-18 20:35:23 +01:00
|
|
|
'';
|
|
|
|
|
2020-10-02 12:18:23 +01:00
|
|
|
preConfigure =
|
|
|
|
# To silence inkscape warnings regarding profile directory
|
|
|
|
''
|
|
|
|
export INKSCAPE_PROFILE_DIR="$(mktemp -d)"
|
|
|
|
'';
|
|
|
|
|
2018-03-14 05:26:39 +00:00
|
|
|
passthru = {
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2019-11-19 00:46:05 +00:00
|
|
|
packageName = pname;
|
2021-05-07 22:18:14 +01:00
|
|
|
attrPath = "gnome.${pname}";
|
2018-03-14 05:26:39 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-23 22:57:59 +01:00
|
|
|
broken = true; # Tracker 3 not supported and it cannot start Tracker 2.
|
2019-11-19 00:46:05 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Documents";
|
2016-09-18 20:35:23 +01:00
|
|
|
description = "Document manager application designed to work with GNOME 3";
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 20:35:23 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|