lol

Merge pull request #241396 from galenhuntington/xv

xv: init at 4.1.1

authored by

Sergei Trofimovich and committed by
GitHub
93d6f73d e08fab04

+45 -1
+5
maintainers/maintainer-list.nix
··· 5775 5775 githubId = 7047019; 5776 5776 name = "Florent Becker"; 5777 5777 }; 5778 + galen = { 5779 + github = "galenhuntington"; 5780 + githubId = 1851962; 5781 + name = "Galen Huntington"; 5782 + }; 5778 5783 gamb = { 5779 5784 email = "adam.gamble@pm.me"; 5780 5785 github = "gamb";
+38
pkgs/applications/graphics/xv/default.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + xorg, 7 + libpng, 8 + libwebp, 9 + libtiff, 10 + libjpeg, 11 + jasper, 12 + }: 13 + 14 + stdenv.mkDerivation rec { 15 + pname = "xv"; 16 + version = "4.1.1"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "jasper-software"; 20 + repo = "xv"; 21 + rev = "v${version}"; 22 + sha256 = "vwSUKWr4Hffx04ATUI58m7UOS/lVTnIVDC3ZTWRwJMM="; 23 + }; 24 + 25 + nativeBuildInputs = [ cmake ]; 26 + buildInputs = [ xorg.libX11 xorg.libXt libpng libwebp libtiff jasper ]; 27 + 28 + meta = { 29 + description = "Classic image viewer and editor for X."; 30 + homepage = "http://www.trilon.com/xv/"; 31 + license = { 32 + fullName = "XV License"; 33 + url = "https://github.com/jasper-software/xv/blob/main/src/README"; 34 + free = false; 35 + }; 36 + maintainers = with lib.maintainers; [ galen ]; 37 + }; 38 + }
-1
pkgs/top-level/aliases.nix
··· 1853 1853 ); # Added 2022-08-02 1854 1854 xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22 1855 1855 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1856 - xv = xxv; # Added 2020-02-22 1857 1856 xvidcap = throw "'xvidcap' has been removed because of a broken dependency"; # Added 2022-11-08 1858 1857 xvfb_run = xvfb-run; # Added 2021-05-07 1859 1858
+2
pkgs/top-level/all-packages.nix
··· 36145 36145 36146 36146 xnotify = callPackage ../tools/X11/xnotify { }; 36147 36147 36148 + xv = callPackage ../applications/graphics/xv { }; 36149 + 36148 36150 xygrib = libsForQt5.callPackage ../applications/misc/xygrib { }; 36149 36151 36150 36152 xzgv = callPackage ../applications/graphics/xzgv { };