guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help required: packaging Foliate


From: Efraim Flashner
Subject: Re: Help required: packaging Foliate
Date: Thu, 6 Feb 2020 21:51:51 +0200

On Thu, Feb 06, 2020 at 09:30:04AM +0000, Alexandru-Sergiu Marton wrote:
> Hi,
> 
> I'm trying to package the ebook reader called Foliate [1].
> 
> I managed to write a recipe that installs it, but it has problems at
> runtime. If you click anything that is supposed to open up a dialog,
> such as the "Open file" or "Preferences" buttons, the whole thing
> freezes. I'm not good at (read: I don't know a single thing about) GTK
> and GNOME stuff, so I'm putting this out here hoping that someone
> might know what's happening.
> 
> Here's the package definition (the use-modules part is written by hand
> in this email cause I had this in a module of it's own):
> 
> (use-modules (gnu packages)
>                        (guix build-system meson)
>                        ((guix licenses) #:prefix license:)
>                        (guix download)
>                        (guix packages)
>                        (guix utils))
> (use-package-modules gnome gettext webkit pkg-config glib gtk freedesktop)
> 
> (package
>  (name "foliate")
>  (version "1.5.3")
>  (source (origin
>       (method url-fetch)
>       (uri (string-append
> "https://github.com/johnfactotum/foliate/archive/"; version ".tar.gz"))
>       (sha256
>        (base32
>         "1mz27qj9zwkn978yd4sdswha4laq5gf9s6cs5xrkqfj9242mrx4m"))))
>  (build-system meson-build-system)
>  (inputs
>   `(("gettext" ,gnu-gettext)
>     ("pkg-config" ,pkg-config)
>     ("glib:bin" ,glib "bin")
>     ("gtk+:bin" ,gtk+ "bin")
>     ("desktop-file-utils" ,desktop-file-utils)))
>  (propagated-inputs
>   `(("gjs" ,gjs)
>     ("webkitgtk" ,webkitgtk)
>     ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)))
>  (synopsis "Simple and modern GTK eBook viewer, built with GJS and Epub.js")
>  (description "")
>  (home-page "https://johnfactotum.github.io/foliate/";)
>  (license license:gpl3+))
> 
> 
> [1]: https://github.com/johnfactotum/foliate
> 

I built it but I wasn't able to get it to run:
$ com.github.johnfactotum.Foliate

(.com.github.johnfactotum.Foliate-real:16928): Gjs-WARNING **: 21:50:01.247: JS 
ERROR: ImportError: No JS module 'main' found in search path
@/gnu/store/ghbd2isjs02445c390xv90l0p3bbla5v-foliate-1.5.3/bin/.com.github.johnfactotum.Foliate-real:9:1

Script 
/gnu/store/ghbd2isjs02445c390xv90l0p3bbla5v-foliate-1.5.3/bin/.com.github.johnfactotum.Foliate-real
 threw an exception

I tried adding (arguments '(#:glib-or-gtk? #t)) to the package
definition, which I think should solve your problem.

-- 
Efraim Flashner   <address@hidden>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]