From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: R dependencies Date: Thu, 03 Sep 2015 08:29:59 +0200 Message-ID: <8737yw3ti0.fsf@elephly.net> References: <87613v43kv.fsf@gnu.org> <87a8t64ph1.fsf@elephly.net> <871teh9ddz.fsf_-_@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXO2J-0007is-2w for guix-devel@gnu.org; Thu, 03 Sep 2015 02:30:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXO2I-0006kW-3R for guix-devel@gnu.org; Thu, 03 Sep 2015 02:30:15 -0400 In-reply-to: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Vicente Vera Cc: guix-devel@gnu.org Hi Vicente, > Going back to the R dependencies topic, I ran across an issue when > trying to draw a plot (with ggplot2). But first some context: > > - I'm not using GuixSD but a binary installation over Manjaro OpenRC; > several base packages missing on Guix > - I only have other two Guix packages installed: xpdf & abbaye All Guix packages capture the complete graph of dependencies, so you’ll always end up with the dependent packages in ‘/gnu/store’ even if only those packages appear in your profile that have been explicitly installed. > - I installed ggplot2 through install.packages("ggplot2") in R (Guix package) Note that ggplot2 has been packaged for Guix: guix package -i r-ggplot2 > R complained about some fonts missing, but I think it could be related > to a missing X11 dependency (complete Xorg maybe?). What could it be? What is the exact error message you get? Is any plot drawn at all? What is the code you use to draw the plot? ~~ Ricardo