From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2wCN-0002Ea-TX for guix-patches@gnu.org; Fri, 13 Oct 2017 05:24:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2wCI-0006xM-DN for guix-patches@gnu.org; Fri, 13 Oct 2017 05:24:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56437) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e2wCI-0006xA-9w for guix-patches@gnu.org; Fri, 13 Oct 2017 05:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e2wCI-00087h-2X for guix-patches@gnu.org; Fri, 13 Oct 2017 05:24:02 -0400 Subject: [bug#28802] [PATCH] gnu: Add paml. Resent-Message-ID: References: <20171012215632.713-1-rekado@elephly.net> From: Ben Woodcroft Message-ID: <9e41021c-74e2-0642-3423-52df07f8b679@uq.edu.au> Date: Fri, 13 Oct 2017 19:23:11 +1000 MIME-Version: 1.0 In-Reply-To: <20171012215632.713-1-rekado@elephly.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US 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: Ricardo Wurmus , 28802@debbugs.gnu.org Cc: Ricardo Wurmus Hi Ricardo, Thanks for the package. On 13/10/17 07:56, Ricardo Wurmus wrote: > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((tools '("baseml" "basemlg" "codeml" > + "pamp" "evolver" "yn00" "chi2")) > + (bin (string-append (assoc-ref outputs "out") "/bin")) > + (docdir (string-append (assoc-ref outputs "out") > + "/share/doc/paml")) > + (docs '("Bismark_User_Guide.pdf" > + "RELEASE_NOTES.txt"))) > + (mkdir-p bin) Since you've already pushed I didn't test out this package, but I notice that the above line is superfluous (though harmless). ben