This commit is contained in:
Jean-François GUILLAUME 2023-02-03 14:50:30 +00:00
parent 31d1cf3b11
commit a17bb8dc98

View file

@ -92,3 +92,21 @@
(package (package
(inherit timescaledb) (inherit timescaledb)
(inputs (list openssl gnu:postgresql-13)))) (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