From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 15/42] gnu: Add ghc-findbin. Date: Tue, 20 Sep 2016 21:12:29 -0400 Message-ID: <20160921011228.GF26508@jasmine> References: <20160918161022.26135-1-ng0@we.make.ritual.n0.is> <20160918161022.26135-15-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="vmttodhTwj0NAgWp" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42363) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmW5b-000877-9Y for guix-devel@gnu.org; Tue, 20 Sep 2016 21:12:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bmW5W-0005MM-M9 for guix-devel@gnu.org; Tue, 20 Sep 2016 21:12:42 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:37944) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bmW5V-0005KQ-Fr for guix-devel@gnu.org; Tue, 20 Sep 2016 21:12:38 -0400 Content-Disposition: inline In-Reply-To: <20160918161022.26135-15-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: ng0 Cc: guix-devel@gnu.org --vmttodhTwj0NAgWp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Sep 18, 2016 at 04:09:55PM +0000, ng0 wrote: > * gnu/packages/haskell.scm (ghc-findbin): New variable. --vmttodhTwj0NAgWp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0005-ghc-findbin-synopsis-fix.patch" >From 3cb586749f2333d0885d20b70a72e4bb38e69c69 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 20 Sep 2016 20:53:49 -0400 Subject: [PATCH 5/8] ghc-findbin synopsis fix --- gnu/packages/haskell.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 026cc32..9a457e8 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6811,9 +6811,9 @@ other transformers.") "197xvn05yysmibm1p5wzxfa256lvpbknr5d1l2ws6g40w1kpk717")))) (build-system haskell-build-system) (home-page "https://github.com/audreyt/findbin") - (synopsis "Locate directory of original program") + (synopsis "Get the absolute path of the running program") (description - "This module locates the full directory to the running program, to allow + "This module locates the full directory of the running program, to allow the use of paths relative to it. FindBin supports invocation of Haskell programs via \"ghci\", via \"runhaskell/runghc\", as well as compiled as an executable.") -- 2.10.0 --vmttodhTwj0NAgWp--