mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
pg_top: nixfmt
This commit is contained in:
parent
c73e275bfa
commit
e36b87dce3
@ -1,4 +1,13 @@
|
|||||||
{ lib, stdenv, fetchurl, ncurses, postgresql, cmake, libelf, libbsd }:
|
{
|
||||||
|
cmake,
|
||||||
|
fetchurl,
|
||||||
|
lib,
|
||||||
|
libbsd,
|
||||||
|
libelf,
|
||||||
|
ncurses,
|
||||||
|
postgresql,
|
||||||
|
stdenv,
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pg_top";
|
pname = "pg_top";
|
||||||
@ -9,7 +18,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-WdSiQURJgtBCYoS/maImppcyM8wzUIJzLWmiSZPlx1Q=";
|
sha256 = "sha256-WdSiQURJgtBCYoS/maImppcyM8wzUIJzLWmiSZPlx1Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libbsd libelf ncurses postgresql ];
|
buildInputs = [
|
||||||
|
libbsd
|
||||||
|
libelf
|
||||||
|
ncurses
|
||||||
|
postgresql
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user