From c5287a389394f8e12cb9209f20622d1c2d29df8b Mon Sep 17 00:00:00 2001 From: Benedek Nagy Date: Mon, 21 Mar 2022 14:01:25 +0000 Subject: [PATCH] ikiwiki: add packages that are neccesary for apt-get install Closes: #2181. Reviewed-by: James Valleroy --- plinth/modules/ikiwiki/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plinth/modules/ikiwiki/__init__.py b/plinth/modules/ikiwiki/__init__.py index 6883ca41d..e094ce128 100644 --- a/plinth/modules/ikiwiki/__init__.py +++ b/plinth/modules/ikiwiki/__init__.py @@ -60,7 +60,9 @@ class IkiwikiApp(app_module.App): packages = Packages('packages-ikiwiki', [ 'ikiwiki', 'libdigest-sha-perl', 'libxml-writer-perl', - 'xapian-omega', 'libsearch-xapian-perl', 'libimage-magick-perl' + 'xapian-omega', 'libsearch-xapian-perl', 'libimage-magick-perl', + 'gcc', 'git', 'librpc-xml-perl', 'libcgi-session-perl', + 'libcgi-formbuilder-perl', 'libc6-dev' ]) self.add(packages)