mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: meson: Update to 0.45.0.
* gnu/packages/build-tools.scm (meson): Update to 0.45.0. [arguments]: Explicitly disable tests (they were skipped before).
This commit is contained in:
parent
d31558632c
commit
3f6c185e0c
1 changed files with 7 additions and 3 deletions
|
@ -71,7 +71,7 @@ (define-public bam
|
||||||
(define-public meson
|
(define-public meson
|
||||||
(package
|
(package
|
||||||
(name "meson")
|
(name "meson")
|
||||||
(version "0.44.0")
|
(version "0.45.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/mesonbuild/meson/"
|
(uri (string-append "https://github.com/mesonbuild/meson/"
|
||||||
|
@ -79,10 +79,14 @@ (define-public meson
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06r8limj38mv884s5riiz6lpzw37cvhbf9jd0smzcbi7fwmv3yah"))))
|
"1r3wlimllakrswx2rb4mbdk1iricqk6myvdvib6dkyx362yanm9l"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(;; FIXME: Tests require many additional inputs, a fix for the RUNPATH
|
||||||
|
;; patch in meson-for-build, and patching many hard-coded file system
|
||||||
|
;; locations in "run_unittests.py".
|
||||||
|
#:tests? #f
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
;; Meson calls the various executables in out/bin through the
|
;; Meson calls the various executables in out/bin through the
|
||||||
;; Python interpreter, so we cannot use the shell wrapper.
|
;; Python interpreter, so we cannot use the shell wrapper.
|
||||||
(delete 'wrap))))
|
(delete 'wrap))))
|
||||||
|
|
Loading…
Reference in a new issue