Fix one of upstream non-determinism, tracked here: https://github.com/JuliaLang/julia/issues/34115 https://github.com/JuliaLang/julia/issues/25900 Patch by Nicoló Balzarotti . --- a/base/loading.jl +++ b/base/loading.jl @@ -807,7 +807,10 @@ path = normpath(joinpath(dirname(prev), _path)) end if _track_dependencies[] - push!(_require_dependencies, (mod, path, mtime(path))) + push!(_require_dependencies, + (mod, path, + haskey(ENV, "SOURCE_DATE_EPOCH") ? + parse(Float64, ENV["SOURCE_DATE_EPOCH"]) : mtime(path))) end return path, prev end idden' name='showmsg' value='1'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)Author
2021-05-20The #guix channel is hosted by Libera Chat.Tobias Geerinckx-Rice
* README (Contact): Update network name. * ROADMAP: Likewise. * doc/contributing.texi (Contributing): Likewise. * doc/guix.texi (After System Installation): Likewise.
2020-10-23doc: Update README.Maxim Cournoyer
* README (Installation): Do not mention installing Guix from Git anymore. (Building from Git): Add section.
2020-10-22README: Refer to the manual for building from Git.Maxim Cournoyer
* README (Installing Guix from Guix): Remove section. (Installation): For installing from Git, refer to the "Building from Git" section of the manual and suggest using './pre-inst-env guix pull' rather than 'make install' for installing Guix.