uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
29
pkgs/tools/misc/pg_top/default.nix
Normal file
29
pkgs/tools/misc/pg_top/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchurl, ncurses, postgresql }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pg_top";
|
||||
version = "3.7.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pgfoundry.org/frs/download.php/1781/pg_top-${version}.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
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue