2017-09-19 00:42:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, postgresql }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "timescaledb-${version}";
|
2017-09-24 16:39:55 +01:00
|
|
|
version = "0.5.0";
|
2017-09-19 00:42:16 +01:00
|
|
|
|
|
|
|
buildInputs = [ postgresql ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "timescale";
|
|
|
|
repo = "timescaledb";
|
|
|
|
rev = version;
|
2017-09-24 16:39:55 +01:00
|
|
|
sha256 = "01swgjw563c42azxsg55ry7cyiipxkcvfrxmw71jil5dxl3s0fkz";
|
2017-09-19 00:42:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D timescaledb.so -t $out/lib
|
|
|
|
install -D timescaledb.control -t $out/share/extension
|
|
|
|
install -D sql/timescaledb--${version}.sql -t $out/share/extension
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "TimescaleDB scales PostgreSQL for time-series data via automatic partitioning across time and space";
|
|
|
|
homepage = https://www.timescale.com/;
|
|
|
|
maintainers = with maintainers; [ volth ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.postgresql;
|
|
|
|
};
|
|
|
|
}
|