lol

xosview: init at 1.23

+41
+39
pkgs/tools/X11/xosview/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libX11 5 + , libXpm 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "xosview"; 10 + version = "1.23"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "hills"; 14 + repo = finalAttrs.pname; 15 + rev = finalAttrs.version; 16 + hash = "sha256-CoBVFTCpvZkIe/g+17JNV1y0G9K+t+p3EE9C5kuBe2k="; 17 + }; 18 + 19 + dontConfigure = true; 20 + 21 + buildInputs = [ 22 + libX11 23 + libXpm 24 + ]; 25 + 26 + makeFlags = [ 27 + "PREFIX=${placeholder "out"}" 28 + "PLATFORM=linux" 29 + ]; 30 + 31 + meta = with lib; { 32 + homepage = "http://www.pogo.org.uk/~mark/xosview/"; 33 + description = "A classic system monitoring tool"; 34 + license = licenses.gpl2Plus; 35 + maintainers = with maintainers; [ AndersonTorres ]; 36 + platforms = with platforms; linux; 37 + }; 38 + }) 39 + # TODO: generalize to other platforms
+2
pkgs/top-level/all-packages.nix
··· 35452 35452 35453 35453 xosd = callPackage ../misc/xosd { }; 35454 35454 35455 + xosview = callPackage ../tools/X11/xosview { }; 35456 + 35455 35457 xosview2 = callPackage ../tools/X11/xosview2 { }; 35456 35458 35457 35459 xow_dongle-firmware = callPackage ../os-specific/linux/firmware/xow_dongle-firmware { };