Commit 16a0d2d4 authored by Anderson Torres's avatar Anderson Torres
Browse files

xosview2: 2.3.2 -> 2.3.3

parent 512cd289
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -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;
  };
})