pg_top: nixfmt

This commit is contained in:
Wolfgang Walther 2024-11-24 12:14:22 +01:00
parent c73e275bfa
commit e36b87dce3
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

@ -1,4 +1,13 @@
{ lib, stdenv, fetchurl, ncurses, postgresql, cmake, libelf, libbsd }:
{
cmake,
fetchurl,
lib,
libbsd,
libelf,
ncurses,
postgresql,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "pg_top";
@ -9,7 +18,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-WdSiQURJgtBCYoS/maImppcyM8wzUIJzLWmiSZPlx1Q=";
};
buildInputs = [ libbsd libelf ncurses postgresql ];
buildInputs = [
libbsd
libelf
ncurses
postgresql
];
nativeBuildInputs = [ cmake ];