mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: wxmaxima: Update to 20.06.6.
* gnu/packages/maths.scm (wxmaxima): Update to 20.06.6. [arguments]: Add 'patch-doc-path phase.
This commit is contained in:
parent
bc549a276c
commit
e79fe4f675
1 changed files with 10 additions and 2 deletions
|
@ -3383,7 +3383,7 @@ (define-public maxima
|
|||
(define-public wxmaxima
|
||||
(package
|
||||
(name "wxmaxima")
|
||||
(version "20.04.0")
|
||||
(version "20.06.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -3392,7 +3392,7 @@ (define-public wxmaxima
|
|||
(commit (string-append "Version-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0vrjxzfgmjdzm1rgl0crz4b4badl14jwh032y3xkcdvjl5j67lp3"))))
|
||||
(base32 "054f7n5kx75ng5j20rd5q27n9xxk03mrd7sbxyym1lsswzimqh4w"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
|
@ -3410,6 +3410,14 @@ (define-public wxmaxima
|
|||
`(#:test-target "test"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-doc-path
|
||||
(lambda _
|
||||
;; Don't look in share/doc/wxmaxima-xx.xx.x for the
|
||||
;; documentation. Only licensing information is placed there by
|
||||
;; Guix.
|
||||
(substitute* "src/Dirstructure.cpp"
|
||||
(("/doc/wxmaxima-\\%s") "/doc/wxmaxima"))
|
||||
#t))
|
||||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
;; Tests require a running X server.
|
||||
|
|
Loading…
Reference in a new issue