···11-{ lib, stdenv, fetchurl, libX11 }:
11+{ lib
22+, stdenv
33+, fetchurl
44+, libX11
55+}:
2633-stdenv.mkDerivation rec {
77+stdenv.mkDerivation (finalAttrs: {
48 pname = "xosview2";
59 version = "2.3.2";
610711 src = fetchurl {
88- url = "mirror://sourceforge/xosview/${pname}-${version}.tar.gz";
99- sha256 = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA=";
1212+ url = "mirror://sourceforge/xosview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
1313+ hash = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA=";
1014 };
11151212- # The software failed to buid with this enabled; it seemed tests were not implemented
1313- doCheck = false;
1414-1516 buildInputs = [ libX11 ];
16171718 meta = with lib; {
1818- description = "Lightweight program that gathers information from your operating system and displays it in graphical form";
1919+ homepage = "http://xosview.sourceforge.net/index.html";
2020+ description = "Lightweight graphical operating system monitor";
1921 longDescription = ''
2022 xosview is a lightweight program that gathers information from your
2123 operating system and displays it in graphical form. It attempts to show
···3335 connect to it on a network, then you can popup an xosview instance and
3436 monitor what is going on.
3537 '';
3636- homepage = "http://xosview.sourceforge.net/index.html";
3738 license = with licenses; [ gpl2 bsdOriginal ];
3838- maintainers = [ maintainers.SeanZicari ];
3939+ maintainers = with maintainers; [ AndersonTorres ];
3940 platforms = platforms.all;
4041 };
4141-}
4242+})