Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
647 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
withSaidar ? true,
ncurses,
}:
stdenv.mkDerivation rec {
pname = "libstatgrab";
version = "0.92.1";
src = fetchurl {
url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${pname}-${version}.tar.gz";
sha256 = "sha256-VoiqSmhVR9cXSoo3PqnY7pJ+dm48wwK97jRSPCxdbBE=";
};
buildInputs = lib.optional withSaidar ncurses;
meta = with lib; {
homepage = "https://www.i-scream.org/libstatgrab/";
description = "Library that provides cross platforms access to statistics about the running system";
maintainers = [ ];
license = licenses.gpl2;
platforms = platforms.unix;
};
}