···1-{ lib, stdenv, fetchurl, libX11 }:
000023-stdenv.mkDerivation rec {
4 pname = "xosview2";
5 version = "2.3.2";
67 src = fetchurl {
8- url = "mirror://sourceforge/xosview/${pname}-${version}.tar.gz";
9- sha256 = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA=";
10 };
1112- # The software failed to buid with this enabled; it seemed tests were not implemented
13- doCheck = false;
14-15 buildInputs = [ libX11 ];
1617 meta = with lib; {
18- description = "Lightweight program that gathers information from your operating system and displays it in graphical form";
019 longDescription = ''
20 xosview is a lightweight program that gathers information from your
21 operating system and displays it in graphical form. It attempts to show
···33 connect to it on a network, then you can popup an xosview instance and
34 monitor what is going on.
35 '';
36- homepage = "http://xosview.sourceforge.net/index.html";
37 license = with licenses; [ gpl2 bsdOriginal ];
38- maintainers = [ maintainers.SeanZicari ];
39 platforms = platforms.all;
40 };
41-}
···1+{ lib
2+, stdenv
3+, fetchurl
4+, libX11
5+}:
67+stdenv.mkDerivation (finalAttrs: {
8 pname = "xosview2";
9 version = "2.3.2";
1011 src = fetchurl {
12+ url = "mirror://sourceforge/xosview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
13+ hash = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA=";
14 };
1500016 buildInputs = [ libX11 ];
1718 meta = with lib; {
19+ homepage = "http://xosview.sourceforge.net/index.html";
20+ description = "Lightweight graphical operating system monitor";
21 longDescription = ''
22 xosview is a lightweight program that gathers information from your
23 operating system and displays it in graphical form. It attempts to show
···35 connect to it on a network, then you can popup an xosview instance and
36 monitor what is going on.
37 '';
038 license = with licenses; [ gpl2 bsdOriginal ];
39+ maintainers = with maintainers; [ AndersonTorres ];
40 platforms = platforms.all;
41 };
42+})