gnu: timescaledb: Do not embed running kernel version.

* gnu/packages/databases.scm (timescaledb)[arguments]: Add
  'remove-kernel-version phase.
This commit is contained in:
Vagrant Cascadian 2022-06-05 21:00:37 -07:00 committed by Vagrant Cascadian
parent ce6d8ca443
commit ae1d8d6a6f
No known key found for this signature in database
GPG key ID: DC518FC87F9716AA

View file

@ -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)