mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: bart: Update to 0.9.00.
This fixes bart reproducibility. * gnu/packages/image-processing.scm (bart): Update to 0.9.00. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I2c40957a8e55fec945ec03e097cf3a3c71da85ee
This commit is contained in:
parent
700126f654
commit
b7af6dd6f5
1 changed files with 4 additions and 4 deletions
|
@ -115,20 +115,19 @@
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
;; TODO: this is not reproducible.
|
|
||||||
(define-public bart
|
(define-public bart
|
||||||
(package
|
(package
|
||||||
(name "bart")
|
(name "bart")
|
||||||
(version "0.8.00")
|
(version "0.9.00")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/mrirecon/bart")
|
(url "https://github.com/mrirecon/bart")
|
||||||
(commit "eacc67b95cf128487ecc48f0e6541ea4dca08818")))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "05lcf7c3g7ms5h82bw1mi4kzkdv5wpqi1zrfhqfkgbcpd3irj6aq"))))
|
(base32 "0mj6jmw31rsnvqmpfqahhj4cy9iv5xgrhzmcsrikdz5dgd45lmjz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -140,6 +139,7 @@
|
||||||
"OPENBLAS=1"
|
"OPENBLAS=1"
|
||||||
"SCALAPACK=1"
|
"SCALAPACK=1"
|
||||||
(string-append "BLAS_BASE=" #$(this-package-input "openblas"))
|
(string-append "BLAS_BASE=" #$(this-package-input "openblas"))
|
||||||
|
(string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "FFTW_BASE=" #$(this-package-input "fftw")))
|
(string-append "FFTW_BASE=" #$(this-package-input "fftw")))
|
||||||
#:parallel-build? #false ;leads to non-deterministic output
|
#:parallel-build? #false ;leads to non-deterministic output
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue