gnu: hdf5: Do not record the build-time kernel version.
* gnu/packages/maths.scm (hdf5)[arguments]: Patch libhdf5.settings to prevent the kernel version on the build node from affecting the output.
This commit is contained in:
parent
1b5905fe68
commit
d8f46d5234
|
@ -724,7 +724,11 @@ incompatible with HDF5.")
|
|||
;; unnecessary store references to those compilers:
|
||||
(substitute* "src/libhdf5.settings"
|
||||
(("(/gnu/store/)([a-Z0-9]*)" all prefix hash)
|
||||
(string-append prefix (string-take hash 10) "...")))
|
||||
(string-append prefix (string-take hash 10) "..."))
|
||||
;; Don't record the build-time kernel version to make the
|
||||
;; settings file reproducible.
|
||||
(("Uname information:.*")
|
||||
"Uname information: Linux\n"))
|
||||
#t))
|
||||
(add-after 'install 'patch-references
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in New Issue