From mboxrd@z Thu Jan 1 00:00:00 1970 From: iyzsong@member.fsf.org (=?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?=) Subject: bug#24188: gnucash needs gtk+ in propagated-inputs Date: Thu, 11 Aug 2016 21:22:43 +0800 Message-ID: <87inv7ignw.fsf__17661.7004479796$1470921866$gmane$org@member.fsf.org> References: <87oa53yx0x.fsf@systemreboot.net> <87y4465kjf.fsf@elephly.net> <87eg5xq9lo.fsf@systemreboot.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXpxu-0005sn-NV for bug-guix@gnu.org; Thu, 11 Aug 2016 09:24:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bXpxq-00027r-Fz for bug-guix@gnu.org; Thu, 11 Aug 2016 09:24:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXpxq-00027m-Ck for bug-guix@gnu.org; Thu, 11 Aug 2016 09:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1bXpxq-0006jE-9c for bug-guix@gnu.org; Thu, 11 Aug 2016 09:24:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87eg5xq9lo.fsf@systemreboot.net> (Arun Isaac's message of "Wed, 10 Aug 2016 14:33:31 +0530") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Arun Isaac Cc: 24188@debbugs.gnu.org, guix-devel@gnu.org Arun Isaac writes: >> The following environment variables are set which may make a difference >> here: >> >> GUIX_GTK3_PATH=/run/current-system/profile/lib/gtk-3.0 >> GUIX_GTK2_PATH=/run/current-system/profile/lib/gtk-2.0 >> GTK_DATA_PREFIX=/run/current-system/profile > > After setting XDG_DATA_DIRS with > > export XDG_DATA_DIRS="/gnu/store/zlr5l39k9gw7ss26iq6vj3yk215xrzpl-profile/share${XDG_DATA_DIRS:+:}$XDG_DATA_DIRS" > > gnucash runs successfully. I found out about this using `guix > environment --search-paths gnucash`. > > How do I find out about these environment variables in general? > Shouldn't they be set in the gnucash wrapper script so that the user > does not have to set them manually? --8<---------------cut here---------------start------------->8--- gnc.gui:ERROR:gnc-icons.c:96:gnc_add_stock_icon_pair: assertion failed: (pixbuf1 && pixbuf2) fish: 'gnucash' terminated by signal SIGABRT (Abort) --8<---------------cut here---------------end--------------->8--- I think this error is caused by gdk-pixbuf, which uses XDG mime-info database to query file types. Install the 'shared-mime-info' package to activate the 'xdg-mime-database' profile hook should make it works. To actually fix this package (and some others) we can: - Wrap them with shared-mime-info in XDG_DATA_DIRS or propagated it. - Make sure 'xdg-mime-database' always run if glib applications are there even without shared-mime-info referenced by profile. IIRC, this was suggested by ludo, but I ignored, now patch sent :-)