From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42021) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGkyw-0000r2-1T for guix-patches@gnu.org; Fri, 02 Jun 2017 07:43:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGkys-0002nr-7H for guix-patches@gnu.org; Fri, 02 Jun 2017 07:43:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47940) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGkys-0002nX-40 for guix-patches@gnu.org; Fri, 02 Jun 2017 07:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dGkyr-00029o-Vb for guix-patches@gnu.org; Fri, 02 Jun 2017 07:43:01 -0400 Subject: bug#27181: [PATCH] gnu: Add kaiju. Resent-To: guix-patches@gnu.org Resent-Message-ID: References: <877f0vyboq.fsf@gnu.org> From: Roel Janssen Message-ID: In-reply-to: <877f0vyboq.fsf@gnu.org> Date: Fri, 02 Jun 2017 13:42:22 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 27181-done@debbugs.gnu.org Ludovic Courtès writes: > Hi Roel! > > Roel Janssen skribis: > >> From ed45f47f7514faf10710b41a7d5e9cdaa8217c70 Mon Sep 17 00:00:00 2001 >> From: Roel Janssen >> Date: Thu, 1 Jun 2017 15:01:51 +0200 >> Subject: [PATCH] gnu: Add kaiju. >> >> * gnu/packages/bioinformatics (kaiju): New variable. > > [...] > >> + (modify-phases %standard-phases >> + (delete 'configure) >> + (add-before 'build 'move-to-src-dir >> + (lambda _ (chdir "src") #t)) >> + (replace 'install >> + (lambda* (#:key inputs outputs #:allow-other-keys) >> + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) >> + (mkdir-p bin) >> + (chdir "..") >> + (copy-recursively "bin" bin) >> + (copy-recursively "util" bin))))))) > > Make sure to return #t at the end of the phase. Otherwise LGTM! I added the #t to the end of the phase. Thanks Ludo’! Pushed in b9a601d9db3aa1bdb877c0ac5e7f53077ee56185. Kind regards, Roel Janssen