diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2022-05-22 17:20:18 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-05-22 17:39:23 +0200 |
commit | f0e9048e98f0789aa98de88984f4ee0fc9687f52 (patch) | |
tree | 90b233518c6307c0f68132bc3ea43c3cb58eccd1 | |
parent | 08756c831cda0dc8cc8a58221378bcf76a4ceff4 (diff) |
gnu: sbcl: Improve reproducilbility.
This should fix the runtime error of the maxima package:
fatal error encountered in SBCL pid 26911 tid 26911:
core was built for runtime "localhost-nixbld-2022-03-03-15-45-58"
but this is "localhost-nixbld-2022-03-03-08-51-27"
* gnu/packages/lisp.scm (sbcl)[arguments]: Add 'fix-build-id' phase.
-rw-r--r-- | gnu/packages/lisp.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index d5f1e94269..ca85cab2b9 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -464,6 +464,18 @@ an interpreter, a compiler, a debugger, and much more.") #:phases (modify-phases %standard-phases (delete 'configure) + (add-after 'unpack 'fix-build-id + ;; One of the build scripts makes a build id using the current date. + ;; Replace it with a reproducible id using a part of the output hash. + (lambda* (#:key outputs #:allow-other-keys) + (let ((hash (substring (assoc-ref outputs "out") + (+ (string-length (%store-directory)) 1) + (+ (string-length (%store-directory)) 9)))) + (substitute* "make-config.sh" + (("echo .* > output/build-id.inc") + (string-append "echo '\"'guix-sbcl-" + hash + "'\"' > output/build-id.inc")))))) (add-after 'unpack 'replace-asdf ;; SBCL developers have not committed to keeping ASDF up to date ;; due to breaking changes [1]. Guix can handle this situation |