gnu: diamond: Do not specify target architecture.

* gnu/packages/bioinformatics.scm (diamond)[arguments]: Do not
specify target architecture.
This commit is contained in:
Ben Woodcroft 2016-05-18 21:21:09 +10:00
parent e62ffce538
commit 7c544991dc

View file

@ -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")