guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add cd-hit-auxtools.


From: guix-commits
Subject: branch master updated: gnu: Add cd-hit-auxtools.
Date: Wed, 05 Oct 2022 08:29:08 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new be1d561f1a gnu: Add cd-hit-auxtools.
be1d561f1a is described below

commit be1d561f1a74d158d67623bf037727918781bd96
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Oct 5 14:28:24 2022 +0200

    gnu: Add cd-hit-auxtools.
    
    * gnu/packages/bioinformatics.scm (cd-hit-auxtools): New variable.
---
 gnu/packages/bioinformatics.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index bb1aeac3a3..b467a8b828 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2476,6 +2476,26 @@ databases.")
     ;; version 2 (GPLv2)."
     (license license:gpl2)))
 
+(define-public cd-hit-auxtools
+  (package
+    (inherit cd-hit)
+    (name "cd-hit-auxtools")
+    (arguments
+     (list
+      #:tests? #f                       ; there are no tests
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'chdir (lambda _ (chdir "cd-hit-auxtools")))
+          ;; No "configure" script
+          (delete 'configure)
+          ;; There is no install target.
+          (replace 'install
+            (lambda _
+              (for-each (lambda (file)
+                          (install-file file (string-append #$output "/bin")))
+                        '("cd-hit-dup" "cd-hit-lap" "read-linker")))))))
+    (inputs '())))
+
 (define-public clipper
   (package
     (name "clipper")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]