summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-03-27 08:40:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-03-27 08:40:00 -0500
commitd4d710c1ab00461c132d87c37b5754d975fb0c53 (patch)
tree11e67577f72181cb3b66772fbd5bee8323197fe5 /pkgs/servers/sql/postgresql/ext/pipelinedb.nix
parent6cc43add3f023abf0d32fe968503683e005c7ff9 (diff)
downloadnixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar.gz
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar.bz2
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar.lz
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar.xz
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.tar.zst
nixpkgs-d4d710c1ab00461c132d87c37b5754d975fb0c53.zip
postgresqlPackages.pipelinedb: init at 1.0.0-13
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext/pipelinedb.nix')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pipelinedb.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pipelinedb.nix b/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
new file mode 100644
index 00000000000..de3cde8120d
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/ext/pipelinedb.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, postgresql, zeromq, openssl }:
+
+if stdenv.lib.versionOlder postgresql.version "10"
+then throw "PipelineDB not supported for PostgreSQL ${postgresql.version}"
+else
+stdenv.mkDerivation rec {
+  pname = "pipelinedb";
+  version = "1.0.0-13";
+
+  src = fetchFromGitHub {
+    owner = "pipelinedb";
+    repo = pname;
+    rev = version;
+    sha256 = "1mnqpvx6g1r2n4kjrrx01vbdx7kvndfsbmm7zbzizjnjlyixz75f";
+  };
+
+  buildInputs = [ postgresql openssl zeromq ];
+
+  makeFlags = [ "USE_PGXS=1" ];
+
+  preConfigure = ''
+    substituteInPlace Makefile \
+      --replace "/usr/lib/libzmq.a" "${zeromq}/lib/libzmq.a"
+  '';
+
+  installPhase = ''
+    mkdir -p $out/bin
+    install -D -t $out/lib/ pipelinedb.so
+    install -D -t $out/share/extension {pipelinedb-*.sql,pipelinedb.control}
+  '';
+
+  meta = with stdenv.lib; {
+    description = "High-performance time-series aggregation for PostgreSQL";
+    homepage = https://www.pipelinedb.com/;
+    license = licenses.asl20;
+    platforms = postgresql.meta.platforms;
+    maintainers = [ maintainers.marsam ];
+  };
+}