From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ctYiN-0003tc-Oz for guix-patches@gnu.org; Thu, 30 Mar 2017 07:58:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ctYiI-00035h-TD for guix-patches@gnu.org; Thu, 30 Mar 2017 07:58:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53772) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ctYiI-00035R-Qe for guix-patches@gnu.org; Thu, 30 Mar 2017 07:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ctYiI-00073c-ED for guix-patches@gnu.org; Thu, 30 Mar 2017 07:58:02 -0400 Subject: bug#25836: [PATCH] gnu: Add gspell Resent-Message-ID: From: Thomas Danckaert In-Reply-To: <87wpbx9z7b.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Fri, 10 Mar 2017 11:57:12 +0100") References: <87wpbx9z7b.fsf@gnu.org> Date: Thu, 30 Mar 2017 13:57:29 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 25836@debbugs.gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Thanks for the patch. I=E2=80=99ve modified the package like this: > > [...] > (inputs > `(("enchant" ,enchant) > ("iso-codes" ,iso-codes) > ("gtk+" ,gtk+) > ("glib" ,glib))) > (native-inputs > `(("glib" ,glib "bin") > ("pkg-config" ,pkg-config) > ("xmllint" ,libxml2) > > ;; For tests. > ("xorg-server" ,xorg-server) > ("aspell-dict-en" ,aspell-dict-en))) Just for reference, for when we solve the dictionary issue: While experimenting with this package and (unsuccessfully) trying to get it to find aspell dictionaries, I also noticed we could add the following native inputs: + ("docbook-xsl" ,docbook-xsl) + ("gobject-introspection" ,gobject-introspection) + ("gtk-doc" ,gtk-doc) + ("vala" ,vala) ("glib" ,glib "bin") ("pkg-config" ,pkg-config) ("xmllint" ,libxml2) ("xorg-server" ,xorg-server))) and the following configure flag to build docs: + #:configure-flags '("--enable-gtk-doc") I'm not really familiar with the gobject system, but I suppose generating the bindings is useful? :) Thomas