From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Package Definition Place Date: Fri, 03 Jan 2014 16:19:26 +0100 Message-ID: <87k3ehnldt.fsf@gnu.org> References: <1471744.UPeTPsttfJ@knossos> <7377714.T8fEdJAmeB@knossos> <20140103055040.GA4180@intra> <1524895.hciPEQfdFj@knossos> 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]:58818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vz6X8-0005Jh-Pv for guix-devel@gnu.org; Fri, 03 Jan 2014 10:19:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vz6X2-000246-Vo for guix-devel@gnu.org; Fri, 03 Jan 2014 10:19:34 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40186) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vz6X2-00023u-Nr for guix-devel@gnu.org; Fri, 03 Jan 2014 10:19:28 -0500 In-Reply-To: <1524895.hciPEQfdFj@knossos> (kete@ninthfloor.org's message of "Fri, 03 Jan 2014 06:37:51 -0500") 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: Kete Cc: guix-devel@gnu.org Kete skribis: > On Friday, January 03, 2014 06:50:40 AM John Darrington wrote: >> This would suggest that you haven't got a guix daemon running. >>=20 >> Install guix and set up the daemon as described in Chapter 2 of the GUIX >> manual. > > Thanks, here are the results: > > gnu/packages/zsh.scm:12:2: warning: possibly unbound variable `mit' > > The license is like MIT. It is called =E2=80=98x11=E2=80=99 (to avoid ambiguity with other licenses = originating from MIT) in the (guix licenses) module. So you would write (define-module (gnu packages zsh) ... #:use-module (guix licenses) ... ) (define-public zsh (package ... (license x11))) If it=E2=80=99s similar to, but different from the X11 license, use: (license (x11-style "http://url-of/the/license")) > guix build: error: zsh: unknown package That will be solved by the above. HTH! Ludo=E2=80=99.