mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: timescaledb: Do not embed running kernel version.
* gnu/packages/databases.scm (timescaledb)[arguments]: Add 'remove-kernel-version phase.
This commit is contained in:
parent
ce6d8ca443
commit
ae1d8d6a6f
1 changed files with 7 additions and 0 deletions
|
@ -1345,6 +1345,13 @@ (define-public timescaledb
|
|||
"src/loader/CMakeLists.txt")
|
||||
(("\\$\\{PG_PKGLIBDIR\\}")
|
||||
(string-append #$output "/lib")))))
|
||||
(add-after 'unpack 'remove-kernel-version
|
||||
;; Do not embed the running kernel version for reproducible
|
||||
;; builds
|
||||
(lambda _
|
||||
(substitute* "src/config.h.in"
|
||||
(("BUILD_OS_VERSION ..CMAKE_SYSTEM_VERSION.")
|
||||
"BUILD_OS_VERSION \""))))
|
||||
;; Run the tests after install to make it easier to create the
|
||||
;; required PostgreSQL+TimescaleDB filesystem union.
|
||||
(delete 'check)
|
||||
|
|
Loading…
Reference in a new issue