pg_top: 4.1.1 -> 4.1.3

Changelog: https://gitlab.com/pg_top/pg_top/-/blob/main/HISTORY.rst
This commit is contained in:
Michael Daniels
2025-09-19 22:26:42 -04:00
parent b841d90d33
commit fa632cedf4
+7 -3
View File
@@ -1,5 +1,6 @@
{
cmake,
docutils,
fetchurl,
lib,
libbsd,
@@ -10,11 +11,11 @@
stdenv.mkDerivation rec {
pname = "pg_top";
version = "4.1.1";
version = "4.1.3";
src = fetchurl {
url = "https://pg_top.gitlab.io/source/pg_top-${version}.tar.xz";
sha256 = "sha256-85LObBS9aAt7Ck5yiK0g2CAKxiYtnWp5XnTAUB5ui/k=";
sha256 = "sha256-4El3GmfP5UDJOsDxyU5z/s3JKw0jlMb8EB/hvtywwVs=";
};
buildInputs = [
@@ -23,7 +24,10 @@ stdenv.mkDerivation rec {
ncurses
];
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [
cmake
docutils
];
meta = with lib; {
description = "'top' like tool for PostgreSQL";