Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

xosview2: remove spurious doCheck = false

+12 -11
+12 -11
pkgs/tools/X11/xosview2/default.nix
··· 1 - { lib, stdenv, fetchurl, libX11 }: 2 3 - stdenv.mkDerivation rec { 4 pname = "xosview2"; 5 version = "2.3.2"; 6 7 src = fetchurl { 8 - url = "mirror://sourceforge/xosview/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA="; 10 }; 11 12 - # The software failed to buid with this enabled; it seemed tests were not implemented 13 - doCheck = false; 14 - 15 buildInputs = [ libX11 ]; 16 17 meta = with lib; { 18 - description = "Lightweight program that gathers information from your operating system and displays it in graphical form"; 19 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 + }: 6 7 + stdenv.mkDerivation (finalAttrs: { 8 pname = "xosview2"; 9 version = "2.3.2"; 10 11 src = fetchurl { 12 + url = "mirror://sourceforge/xosview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; 13 + hash = "sha256-ex1GDBgx9Zzx5tOkZ2IRYskmBh/bUYpRTXHWRoE30vA="; 14 }; 15 16 buildInputs = [ libX11 ]; 17 18 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 ''; 38 license = with licenses; [ gpl2 bsdOriginal ]; 39 + maintainers = with maintainers; [ AndersonTorres ]; 40 platforms = platforms.all; 41 }; 42 + })