1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, caja
, gtk3
, glib
, libxml2
, libarchive
, libsecret
, poppler
, mate-desktop
, itstool
, hicolor-icon-theme
, texlive
, wrapGAppsHook
, enableEpub ? true
, webkitgtk_4_1
, enableDjvu ? true
, djvulibre
, enablePostScript ? true
, libspectre
, enableXps ? true
, libgxps
, enableImages ? false
, mateUpdateScript
}:
stdenv.mkDerivation rec {
pname = "atril";
version = "1.28.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "ztRyX26bccTqY2dr/DzDvgnSnboIqnp6uXlk4LQ1UWI=";
};
nativeBuildInputs = [
pkg-config
gettext
wrapGAppsHook
];
buildInputs = [
caja
gtk3
glib
itstool
libarchive
libsecret
libxml2
poppler
mate-desktop
hicolor-icon-theme
texlive.bin.core # for synctex, used by the pdf back-end
]
++ lib.optionals enableDjvu [ djvulibre ]
++ lib.optionals enableEpub [ webkitgtk_4_1 ]
++ lib.optionals enablePostScript [ libspectre ]
++ lib.optionals enableXps [ libgxps ]
;
configureFlags = [ ]
++ lib.optionals (enableDjvu) [ "--enable-djvu" ]
++ lib.optionals (enableEpub) [ "--enable-epub" ]
++ lib.optionals (enablePostScript) [ "--enable-ps" ]
++ lib.optionals (enableXps) [ "--enable-xps" ]
++ lib.optionals (enableImages) [ "--enable-pixbuf" ];
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
makeFlags = [ "cajaextensiondir=$$out/lib/caja/extensions-2.0" ];
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
meta = with lib; {
description = "A simple multi-page document viewer for the MATE desktop";
homepage = "https://mate-desktop.org";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = teams.mate.members;
};
}
|