Files
nixpkgs/pkgs/by-name/xo/xosview2/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

53 lines
1.6 KiB
Nix

{
lib,
stdenv,
fetchurl,
libX11,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xosview2";
version = "2.3.4";
src = fetchurl {
url = "mirror://sourceforge/xosview/xosview2-${finalAttrs.version}.tar.gz";
hash = "sha256-tNBZdhCy8jpbTA19T8hxCO2c+wxy03EJ9ar3GAjOpcU=";
};
outputs = [
"out"
"man"
];
buildInputs = [ libX11 ];
meta = {
homepage = "https://xosview.sourceforge.net/index.html";
description = "Lightweight graphical operating system monitor";
longDescription = ''
xosview is a lightweight program that gathers information from your
operating system and displays it in graphical form. It attempts to show
you in a quick glance an overview of how your system resources are being
utilized.
It can be configured to be nothing more than a small strip showing a
couple of parameters on a desktop task bar. Or it can display dozens of
meters and rolling graphical charts over your entire screen.
Since xosview renders all graphics with core X11 drawing methods, you can
run it on one machine and display it on another. This works even if your
other host is an operating system not running an X server inside a
virtual machine running on a physically different host. If you can
connect to it on a network, then you can popup an xosview instance and
monitor what is going on.
'';
license = with lib.licenses; [
gpl2
bsdOriginal
];
mainProgram = "xosview2";
maintainers = [ ];
inherit (libX11.meta) platforms;
};
})