diff options
author | Arun Isaac | 2024-10-22 23:40:55 +0100 |
---|---|---|
committer | Arun Isaac | 2024-10-22 23:40:55 +0100 |
commit | cb3f9cc89124fb9fedf97cf6299d0e5e4e1a6102 (patch) | |
tree | 6951914332fe2d5875e657d0e3843e2566cecd19 /gn/packages | |
parent | 21d359d1c8870fadc5293bd7e3c31cc3b106dee3 (diff) | |
download | guix-bioinformatics-cb3f9cc89124fb9fedf97cf6299d0e5e4e1a6102.tar.gz |
gn: smoothxg: Update to 0.8.0.
* gn/packages/bioinformatics.scm (smoothxg): Update to 0.8.0.
[arguments]: Remove architecture-specific -march=armv8-a+simd flag.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/bioinformatics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 4860955..3468108 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -1810,14 +1810,14 @@ dictionaries to record a queryable version of the graph.") (define-public smoothxg (package (name "smoothxg") - (version "0.7.2") + (version "0.8.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/pangenome/smoothxg" "/releases/download/v" version "/smoothxg-v" version ".tar.gz")) (sha256 - (base32 "1px8b5aaa23z85i7ximdamk2jj7wk5hb7bpbrgxsvkxc69zlwy38")) + (base32 "1gl4dskj81hlma7wsjrwwg77hgzk7dc9iaqqnf2wzrf2f4ll1cdj")) (snippet #~(begin (use-modules (guix build utils)) @@ -1855,7 +1855,8 @@ dictionaries to record a queryable version of the graph.") (with-directory-excursion (string-append "../smoothxg-v" #$version "/deps/abPOA") (substitute* "Makefile" - (("-march=native") "")) + (("-march=native") "") + (("-march=armv8-a\\+simd") "")) (apply invoke "make" "libabpoa" make-flags))))))) (inputs (list jemalloc |