mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: diamond: Do not specify target architecture.
* gnu/packages/bioinformatics.scm (diamond)[arguments]: Do not specify target architecture.
This commit is contained in:
parent
e62ffce538
commit
7c544991dc
1 changed files with 7 additions and 1 deletions
|
@ -1494,7 +1494,13 @@ (define-public diamond
|
|||
"1dqancz32c2l7w1b2vkvh5zqa2jnf99j1c41djnx1l8pxn044zdc"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; no "check" target
|
||||
'(#:tests? #f ; no "check" target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-native-compilation
|
||||
(lambda _
|
||||
(substitute* "CMakeLists.txt" (("-march=native") ""))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
(home-page "https://github.com/bbuchfink/diamond")
|
||||
|
|
Loading…
Reference in a new issue