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

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