about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/pg_top/default.nix
blob: f5d42431e4f231dc204587ccbfabff647e2a2128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, ncurses, postgresql }:

stdenv.mkDerivation rec {
  name = "pg_top-3.7.0";

  src = fetchurl {
    url = "http://pgfoundry.org/frs/download.php/1781/${name}.tar.gz";
    sha256 = "17xrv0l58rv3an06gkajzw0gg6v810xx6vl137an1iykmhvfh7h2";
  };

  buildInputs = [ ncurses postgresql ];

  meta = with lib; {
    description = "A 'top' like tool for PostgreSQL";
    longDescription = ''
      pg_top allows you to:
       * View currently running SQL statement of a process.
       * View query plan of a currently running SQL statement.
       * View locks held by a process.
       * View user table statistics.
       * View user index statistics.
    '';

    homepage = "http://ptop.projects.postgresql.org/";
    platforms = platforms.linux;
    license = licenses.free; # see commands.c
  };
}