xosview2: 2.3.2 -> 2.3.3
This commit is contained in:
parent
512cd28980
commit
16a0d2d4ad
1 changed files with 9 additions and 7 deletions
|
@ -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;
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue