xosview2: 2.3.2 -> 2.3.3

This commit is contained in:
Anderson Torres 2023-11-03 19:36:45 -03:00
parent 512cd28980
commit 16a0d2d4ad

View File

@ -6,16 +6,18 @@
stdenv.mkDerivation (finalAttrs: {
pname = "xosview2";
version = "2.3.2";
version = "2.3.3";
src = fetchurl {
url = "mirror://sourceforge/xosview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
hash = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA=";
url = "mirror://sourceforge/xosview/xosview2-${finalAttrs.version}.tar.gz";
hash = "sha256-kEp6n9KmZ+6sTFyJr1V8Ssq9aZuh69c4U1YIiqvxIxw=";
};
outputs = [ "out" "man" ];
buildInputs = [ libX11 ];
meta = with lib; {
meta = {
homepage = "https://xosview.sourceforge.net/index.html";
description = "Lightweight graphical operating system monitor";
longDescription = ''
@ -35,9 +37,9 @@ stdenv.mkDerivation (finalAttrs: {
connect to it on a network, then you can popup an xosview instance and
monitor what is going on.
'';
license = with licenses; [ gpl2 bsdOriginal ];
license = with lib.licenses; [ gpl2 bsdOriginal ];
mainProgram = "xosview2";
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.all;
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (libX11.meta) platforms;
};
})