mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: julia-safetestsets: Fix build.
* gnu/packages/julia-xyz.scm (julia-safetestsets)[arguments]: Add phase to fix the version string in the generated Project.toml.
This commit is contained in:
parent
f4f590e735
commit
ff7d15ef7d
1 changed files with 7 additions and 1 deletions
|
@ -4919,7 +4919,13 @@ (define-public julia-safetestsets
|
|||
(arguments
|
||||
(list
|
||||
#:julia-package-name "SafeTestsets"
|
||||
#:julia-package-uuid "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"))
|
||||
#:julia-package-uuid "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'link-depot 'fix-package-toml
|
||||
(lambda _
|
||||
(substitute* "Project.toml"
|
||||
(("version = .*") "version = \"0.0.1\"\n")))))))
|
||||
(native-inputs
|
||||
(list julia-staticarrays))
|
||||
(home-page "https://github.com/YingboMa/SafeTestsets.jl")
|
||||
|
|
Loading…
Reference in a new issue