From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Alexander Shendi" Subject: patch for gnu/packages/scheme.scm Date: Tue, 19 May 2015 01:13:42 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=rehcsedm-19703163-140c-4596-9cfc-e9eb35926f53 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuUEG-0005xu-4R for guix-devel@gnu.org; Mon, 18 May 2015 19:13:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YuUED-0001sa-02 for guix-devel@gnu.org; Mon, 18 May 2015 19:13:48 -0400 Received: from mout.web.de ([212.227.17.12]:59547) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuUEC-0001s9-NC for guix-devel@gnu.org; Mon, 18 May 2015 19:13:44 -0400 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: guix-devel@gnu.org Cc: Alexander.Shendi@web.de --rehcsedm-19703163-140c-4596-9cfc-e9eb35926f53 Content-Type: text/plain; charset=UTF-8 Dear list, I have just installed Guix SD 0.8.2. I have initialized the system from the desktop template. I noticed a problem with the mit-scheme 9.2 package. When inwoking the edwin editor from the MIT-Scheme REPL (via "(edwin)"), I got an error message instead of the expected editor window: ;Can't find any usable display type ;To continue, call RESTART with an option number: ; (RESTART 1) => Return to read-eval-print level 1. 2 error> One reason for this is that libx11 is not listed a a dependency. The attached patch solves the problem. It is rather simple, but I hope it is useful. TODO: * Make Edwin work on a terminal (this still doesn't work) I you have any questions, please mail me directly mailto:Alexander.Shendi@web.de , as I am not (yet) subscribed to this list. Best Regards and thanks for the fine Work on Guix SD so far, Alexander --rehcsedm-19703163-140c-4596-9cfc-e9eb35926f53 Content-Type: application/octet-stream Content-Disposition: attachment; filename=scheme.scm.patch --- scheme.scm.orig 2015-05-19 00:58:17.452739364 +0200 +++ scheme.scm 2015-05-18 23:52:04.212718263 +0200 @@ -38,6 +38,7 @@ #:use-module (gnu packages libffi) #:use-module (gnu packages fontutils) #:use-module (gnu packages image) + #:use-module (gnu packages xorg) #:use-module (ice-9 match)) (define (mit-scheme-source-directory system version) @@ -90,6 +91,7 @@ ;; ("texlive-core" ,texlive-core) ("texinfo" ,texinfo) ("m4" ,m4) + ("libx11" ,libx11) ("source" --rehcsedm-19703163-140c-4596-9cfc-e9eb35926f53--