guix-commits
[Top][All Lists]
Advanced

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

02/11: gnu: bamtools: Update to 2.5.2.


From: guix-commits
Subject: 02/11: gnu: bamtools: Update to 2.5.2.
Date: Tue, 13 Dec 2022 10:34:11 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 8cc22866c283f49c14f7b7419f57c40c8eee1f56
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Dec 13 14:53:03 2022 +0100

    gnu: bamtools: Update to 2.5.2.
    
    * gnu/packages/bioinformatics.scm (bamtools): Update to 2.5.2.
    [arguments]: Enable tests; remove extra phases.
    [inputs]: Add jsoncpp.
    [native-inputs]: Add pkg-config.
---
 gnu/packages/bioinformatics.scm | 19 ++++---------------
 1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9dcc5bc92c..0f3d8010af 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -219,7 +219,7 @@ structure of the predicted RNA.")
 (define-public bamtools
   (package
     (name "bamtools")
-    (version "2.5.1")
+    (version "2.5.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -228,21 +228,10 @@ structure of the predicted RNA.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0nfb2ypcx9959xnbz6wxh6py3xfizgmg8nrknxl95c507m9hmq8b"))))
+                "14lw571vbks138i0lj66qjdbk8iwa817x2zbpzij61vv1gdgfbn5"))))
     (build-system cmake-build-system)
-    (arguments
-     `(#:tests? #f ;no "check" target
-       #:phases
-       (modify-phases %standard-phases
-         (add-before
-          'configure 'set-ldflags
-          (lambda* (#:key outputs #:allow-other-keys)
-            (setenv "LDFLAGS"
-                    (string-append
-                     "-Wl,-rpath="
-                     (assoc-ref outputs "out") "/lib/bamtools"))
-            #t)))))
-    (inputs (list zlib))
+    (inputs (list jsoncpp zlib))
+    (native-inputs (list pkg-config))
     (home-page "https://github.com/pezmaster31/bamtools";)
     (synopsis "C++ API and command-line toolkit for working with BAM data")
     (description



reply via email to

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