summary refs log blame commit diff
path: root/pkgs/servers/sql/postgresql/ext/pg_topn.nix
blob: b6300f78af25adebd5e493c832308ccec897badb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                        

                         
                    
                    
 





                                     
                                                                    


                   
                                                  

                         

                                                



                                                                      
                                                               
                                                      
                                            


                                 
{ stdenv, fetchFromGitHub, postgresql }:

stdenv.mkDerivation rec {
  pname = "pg_topn";
  version = "2.3.0";

  buildInputs = [ postgresql ];

  src = fetchFromGitHub {
    owner  = "citusdata";
    repo   = "postgresql-topn";
    rev    = "refs/tags/v${version}";
    sha256 = "05mjzm7rz5j7byzag23526hhsqsg4dsyxxsg8q9ray1rwxjbr392";
  };

  installPhase = ''
    mkdir -p $out/{lib,share/postgresql/extension}

    cp *.so      $out/lib
    cp *.sql     $out/share/postgresql/extension
    cp *.control $out/share/postgresql/extension
  '';

  meta = with stdenv.lib; {
    description = "Efficient querying of 'top values' for PostgreSQL";
    homepage    = https://github.com/citusdata/postgresql-topn;
    maintainers = with maintainers; [ thoughtpolice ];
    platforms   = postgresql.meta.platforms;
    license     = licenses.agpl3;
  };
}