From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: Add pass. Date: Thu, 27 Aug 2015 23:11:05 +0200 Message-ID: <87egioxwra.fsf@gnu.org> References: 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]:42529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZV4S2-0000Hv-7U for guix-devel@gnu.org; Thu, 27 Aug 2015 17:11:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZV4Ry-0006IT-W9 for guix-devel@gnu.org; Thu, 27 Aug 2015 17:11:14 -0400 In-Reply-To: (Steve Sprang's message of "Sat, 22 Aug 2015 19:51:35 -0700") 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: Steve Sprang Cc: guix-devel@gnu.org Steve Sprang skribis: > From adef360ea4ec41aa23ec7aef43341c12bf27ca3c Mon Sep 17 00:00:00 2001 > From: Steve Sprang > Date: Sat, 22 Aug 2015 19:49:21 -0700 > Subject: [PATCH] gnu: Add pass. > > * gnu/packages/password-utils.scm (pass): New variable. > +(define-public pass > + (package > + (name "pass") Shouldn=E2=80=99t it be =E2=80=9Cpassword-store=E2=80=9D, which is the name= of the tarball? > + (list (string-append "PREFIX=3D" %output) > + "FORCE_ALL=3D1") ; bash-completion Could you expound the comment a bit? Maybe =E2=80=9Cinstall bash completio= n=E2=80=9D? > + #:test-target "test" > + #:tests? #f)) ; tests hang Could it be that $HOME points to an nonexistent directory, which confuses gpg? Could you try something like: (setenv "HOME" (getcwd)) ? Thanks, Ludo=E2=80=99.