From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 2/2] gnu: lispf4: Remove unused inputs key. Date: Mon, 12 Sep 2016 13:57:56 +0000 Message-ID: <20160912135756.7185-2-ng0@we.make.ritual.n0.is> References: <20160912135756.7185-1-ng0@we.make.ritual.n0.is> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjRlA-0006Jz-Kw for guix-devel@gnu.org; Mon, 12 Sep 2016 09:58:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjRl7-000651-HR for guix-devel@gnu.org; Mon, 12 Sep 2016 09:58:56 -0400 Received: from aibo.runbox.com ([91.220.196.211]:48721) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjRl7-00064d-Ah for guix-devel@gnu.org; Mon, 12 Sep 2016 09:58:53 -0400 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1bjRl6-0003GQ-K3 for guix-devel@gnu.org; Mon, 12 Sep 2016 15:58:52 +0200 In-Reply-To: <20160912135756.7185-1-ng0@we.make.ritual.n0.is> 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: guix-devel@gnu.org * gnu/packages/lisp.scm (lispf4)[arguments]: Remove unused inputs from 'install phase. [source](file-name): Append -checkout to the file-name. --- gnu/packages/lisp.scm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index b35aec0..a83a05c 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -453,7 +453,7 @@ interface.") (uri (git-reference (url "https://github.com/blakemcbride/LISPF4.git") (commit commit))) - (file-name (string-append name "-" version)) + (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "18k8kfn30za637y4bfbm9x3vv4psa3q8f7bi9h4h0qlb8rz8m92c")))) @@ -463,14 +463,12 @@ interface.") (arguments `(#:make-flags '("-f" "Makefile.unx" "CC=gcc") - ;; no check phase - #:tests? #f + #:tests? #f ; No 'check phase #:phases (modify-phases %standard-phases (delete 'configure) - (replace - 'install - (lambda* (#:key outputs inputs #:allow-other-keys) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (doc (string-append (assoc-ref outputs "doc") -- 2.10.0