4b55459323
* xosview2: 2.2.2 -> 2.3.0 (#50533) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/xosview2/versions * xosview2: fix licenses https://sourceforge.net/p/xosview/git/ci/v2.3.0/tree/COPYING
42 lines
1.6 KiB
Nix
42 lines
1.6 KiB
Nix
{ stdenv, fetchurl, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xosview2-${version}";
|
|
version = "2.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xosview/${name}.tar.gz";
|
|
sha256 = "0a588aryjn3397p7d3sp3nblnsg3v8affib1kfk3k8x0x75vgpal";
|
|
};
|
|
|
|
# The software failed to buid with this enabled; it seemed tests were not implemented
|
|
doCheck = false;
|
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Lightweight program that gathers information from your operating system and displays it in graphical form";
|
|
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.
|
|
'';
|
|
homepage = "http://xosview.sourceforge.net/index.html";
|
|
license = with licenses; [ gpl2 bsdOriginal ];
|
|
maintainers = [ maintainers.SeanZicari ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|