me
/
guix
Archived
1
0
Fork 0

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.
Efraim Flashner 2022-12-12 23:35:41 +02:00
parent f4f590e735
commit ff7d15ef7d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 1 deletions

View File

@ -4919,7 +4919,13 @@ through matrix-vector multiplication.")
(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")