xosview2: remove spurious doCheck = false

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