timescaledb 2.8.1 pgsql 15 for zabbix...

This commit is contained in:
Jean-François GUILLAUME 2023-02-03 15:47:58 +01:00
parent aa5011c051
commit 326e0b6968
GPG key ID: 38751DAE145EFB5A

View file

@ -20,7 +20,7 @@
(url "https://github.com/timescale/timescaledb")
(commit version)))
(file-name (git-file-name name version))
(sha256 (base32 "0siijqypx53lkb19y6zz7bx1bnbhk40b5ky5l74ckhv80nlffzfy")) ))
(sha256 (base32 "0siijqypx53lkb19y6zz7bx1bnbhk40b5ky5l74ckhv80nlffzfy"))))
(build-system cmake-build-system)
(arguments
(list #:imported-modules `((guix build union)
@ -92,3 +92,21 @@
(package
(inherit timescaledb)
(inputs (list openssl gnu:postgresql-13))))
(define-public timescaledb-2.8-pg15
(package
(inherit timescaledb)
(name "timescaledb")
(version "2.8.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/timescale/timescaledb")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1gbadna0ilmqad7sbrixm12wd71h43njhsbp1kh5lispb6drdb6r"))))
(inputs (list openssl gnu:postgresql-15))))
timescaledb-2.8-pg15