timescaledb: init at 0.4.2

This commit is contained in:
Volth 2017-09-18 23:42:16 +00:00
parent bef916338d
commit 716849c97e
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, postgresql }:
stdenv.mkDerivation rec {
name = "timescaledb-${version}";
version = "0.4.2";
buildInputs = [ postgresql ];
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
rev = version;
sha256 = "0rwcd7wg3kv343b02330nlpqfm6jj5g0d2pkr1pc78cq8prhxx39";
};
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;
};
}

View file

@ -16492,6 +16492,8 @@ with pkgs;
timbreid = callPackage ../applications/audio/pd-plugins/timbreid { };
timescaledb = callPackage ../servers/sql/postgresql/timescaledb {};
timewarrior = callPackage ../applications/misc/timewarrior { };
timidity = callPackage ../tools/misc/timidity { };