From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: 01/03: gnu: Add ncurses-with-gpm. Date: Tue, 11 Jul 2017 11:42:23 +0200 Message-ID: <20170711114223.767ecc9f@scratchpost.org> References: <20170707052643.30851.55219@vcs0.savannah.gnu.org> <20170707052644.03EDF20DD7@vcs0.savannah.gnu.org> <874luocxcw.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUrgi-0002Qz-IS for guix-devel@gnu.org; Tue, 11 Jul 2017 05:42:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dUrgf-0003Sh-G0 for guix-devel@gnu.org; Tue, 11 Jul 2017 05:42:36 -0400 In-Reply-To: <874luocxcw.fsf@gnu.org> 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" To: Ludovic =?ISO-8859-1?Q?Court=E8s?= Cc: guix-devel@gnu.org Hi Ludo, On Fri, 07 Jul 2017 13:14:39 +0200 ludo@gnu.org (Ludovic Court=C3=A8s) wrote: > I=E2=80=99m really happy to see you continue John=E2=80=99s heroic work o= n the > installer! I=E2=80=99ll be happy to give it a spin when you deem appropr= iate. Okay. Still some loose ends to tie up first :) > > +(define-public ncurses/gpm > > + (package > > + (inherit ncurses) > > + (name "ncurses-with-gpm") > > + (arguments > > + (substitute-keyword-arguments (package-arguments ncurses) > > + ((#:configure-flags cf) > > + `(cons (string-append "--with-gpm=3D" (assoc-ref %build-inpu= ts "gpm") "/lib/libgpm.so.2") ,cf)))) > > + (inputs > > + `(("gpm" ,gpm))))) =20 >=20 > Does it need the full file name of the .so? Would be nicer if this > could be avoided, to avoid breakage in the future. I tried it - apparently it does need it. With all this "ncurses/fixed" stuff in master, should I make it inherit fro= m ncurses/fixed ?