2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, meson, ninja, gettext, fetchurl, evince, gjs
|
2017-10-04 22:50:14 +01:00
|
|
|
, pkgconfig, gtk3, glib, tracker, tracker-miners
|
2018-07-21 01:44:44 +01:00
|
|
|
, itstool, libxslt, webkitgtk, libgdata
|
2018-03-14 05:26:39 +00:00
|
|
|
, gnome-desktop, libzapojit, libgepub
|
2019-05-22 12:03:39 +01:00
|
|
|
, gnome3, gdk-pixbuf, libsoup, docbook_xsl, docbook_xml_dtd_42
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection, inkscape, poppler_utils
|
2019-04-17 01:38:26 +01:00
|
|
|
, desktop-file-utils, wrapGAppsHook, python3, 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-09-02 17:44:49 +01:00
|
|
|
version = "3.33.90";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-documents/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-02 17:44:49 +01:00
|
|
|
sha256 = "0l9g10i380bnjp1y3pslsy8ph1hd5x1d57dadvq70p5ki4r3qjaw";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2019-03-06 00:29:53 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dgetting-started=true"
|
|
|
|
];
|
2018-03-14 05:26:39 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-09-03 21:03:47 +01:00
|
|
|
meson ninja pkgconfig gettext itstool libxslt desktop-file-utils docbook_xsl docbook_xml_dtd_42 wrapGAppsHook python3
|
2018-03-14 05:26:39 +00:00
|
|
|
inkscape poppler_utils # building getting started
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2019-04-17 01:38:26 +01:00
|
|
|
gtk3 glib gsettings-desktop-schemas
|
2019-05-22 12:03:39 +01:00
|
|
|
gdk-pixbuf gnome3.adwaita-icon-theme evince
|
2018-12-02 11:41:15 +00:00
|
|
|
libsoup webkitgtk gjs gobject-introspection
|
2018-03-14 05:26:39 +00:00
|
|
|
tracker tracker-miners libgdata
|
|
|
|
gnome-desktop libzapojit libgepub
|
|
|
|
];
|
|
|
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
2018-03-14 05:26:39 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gnome-documents";
|
|
|
|
attrPath = "gnome3.gnome-documents";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Documents;
|
|
|
|
description = "Document manager application designed to work with GNOME 3";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|