mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 04:40:06 -05:00
gnu: ivar: Update to 1.4.2.
* gnu/packages/bioinformatics.scm (ivar): Update to 1.4.2. [arguments]: Remove -Werror flag.
This commit is contained in:
parent
f69f346289
commit
1fca85cd88
1 changed files with 12 additions and 3 deletions
|
@ -17814,7 +17814,7 @@ (define-public louvain
|
||||||
(define-public ivar
|
(define-public ivar
|
||||||
(package
|
(package
|
||||||
(name "ivar")
|
(name "ivar")
|
||||||
(version "1.3.1")
|
(version "1.4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -17823,9 +17823,18 @@ (define-public ivar
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"044xa0hm3b8fga64csrdx05ih8w7kwmvcdrdrhkg8j11ml4bi4xv"))))
|
"0v3rsak84ilg4iaynwpmmkj507vham5rjk2pfsmylpaqylgc69yx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `(#:parallel-tests? #false)) ; not supported
|
(arguments
|
||||||
|
(list
|
||||||
|
#:parallel-tests? #false ;not supported
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-CXXFLAGS
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("src/Makefile.am"
|
||||||
|
"tests/Makefile.am")
|
||||||
|
(("-Werror") "")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list htslib zlib))
|
(list htslib zlib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue