2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
2018-04-02 13:15:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pg_topn";
|
2020-11-27 04:20:00 +00:00
|
|
|
version = "2.3.1";
|
2018-04-02 13:15:07 +01:00
|
|
|
|
|
|
|
buildInputs = [ postgresql ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "citusdata";
|
|
|
|
repo = "postgresql-topn";
|
|
|
|
rev = "refs/tags/v${version}";
|
2020-11-27 04:20:00 +00:00
|
|
|
sha256 = "0ai07an90ywhk10q52hajgb33va5q76j7h8vj1r0rvq6dyii0wal";
|
2018-04-02 13:15:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-08-14 23:36:59 +01:00
|
|
|
mkdir -p $out/{lib,share/postgresql/extension}
|
2018-04-02 13:15:07 +01:00
|
|
|
|
|
|
|
cp *.so $out/lib
|
2019-07-01 15:18:03 +01:00
|
|
|
cp *.sql $out/share/postgresql/extension
|
|
|
|
cp *.control $out/share/postgresql/extension
|
2018-04-02 13:15:07 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-02 13:15:07 +01:00
|
|
|
description = "Efficient querying of 'top values' for PostgreSQL";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/citusdata/postgresql-topn";
|
2020-11-27 04:20:00 +00:00
|
|
|
changelog = "https://github.com/citusdata/postgresql-topn/blob/v${version}/CHANGELOG.md";
|
2018-04-02 13:15:07 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
2019-05-06 12:00:00 +01:00
|
|
|
platforms = postgresql.meta.platforms;
|
2018-04-02 13:15:07 +01:00
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|