mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
962e2553dc
Signed-off-by: Austin Seipp <aseipp@pobox.com>
33 lines
845 B
Nix
33 lines
845 B
Nix
{ stdenv, fetchFromGitHub, postgresql, protobufc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pg_topn-${version}";
|
|
version = "2.0.2";
|
|
|
|
nativeBuildInputs = [ protobufc ];
|
|
buildInputs = [ postgresql ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "citusdata";
|
|
repo = "postgresql-topn";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "00hc3hgnqv9xaalizbcvprb7s55sydj2qgk3rhgrdlwg2g025h62";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{lib,share/extension}
|
|
|
|
cp *.so $out/lib
|
|
cp *.sql $out/share/extension
|
|
cp *.control $out/share/extension
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Efficient querying of 'top values' for PostgreSQL";
|
|
homepage = https://www.citusdata.com/;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
platforms = platforms.linux;
|
|
license = licenses.agpl3;
|
|
};
|
|
}
|