guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add eddylab-squid.


From: guix-commits
Subject: branch master updated: gnu: Add eddylab-squid.
Date: Tue, 23 Jan 2024 07:53:07 -0500

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 d3129b3f1e gnu: Add eddylab-squid.
d3129b3f1e is described below

commit d3129b3f1e8589716fef43ba7840aeb9371b0dfa
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Jan 23 13:52:36 2024 +0100

    gnu: Add eddylab-squid.
    
    * gnu/packages/bioinformatics.scm (eddylab-squid): New variable.
    
    Change-Id: Icb02f42fc95d2001a639e22608a01ef9074158bc
---
 gnu/packages/bioinformatics.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b403fdbdf5..07d0713756 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5508,6 +5508,35 @@ quantitative phenotypes.")
     ;; license is the GPL.
     (license license:gpl3+)))
 
+(define-public eddylab-squid
+  (package
+    (name "eddylab-squid")
+    (version "1.9g")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://eddylab.org/software/squid/squid-";
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "19ywv1h581a84yyjnp64gwww99vhgbxi8v4rl37xp92ag7l44brh"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'set-perl-search-path
+           (lambda _
+             ;; Work around "dotless @INC" build failure.
+             (setenv "PERL5LIB"
+                     (string-append (getcwd) "/Testsuite:"
+                                    (getenv "PERL5LIB"))))))))
+    (inputs (list perl))
+    (home-page "http://eddylab.org/software.html";)
+    (synopsis "C function library for sequence analysis")
+    (description "SQUID is Sean Eddy's personal library of C functions
+and utility programs for sequence analysis.")
+    (license license:gpl2)))
+
 (define-public edirect
   (package
     (name "edirect")



reply via email to

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