Merge pull request #241396 from galenhuntington/xv

xv: init at 4.1.1
This commit is contained in:
Sergei Trofimovich 2023-07-07 18:04:22 +01:00 committed by GitHub
commit 93d6f73da1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 45 additions and 1 deletions

View File

@ -5775,6 +5775,11 @@
githubId = 7047019;
name = "Florent Becker";
};
galen = {
github = "galenhuntington";
githubId = 1851962;
name = "Galen Huntington";
};
gamb = {
email = "adam.gamble@pm.me";
github = "gamb";

View File

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
xorg,
libpng,
libwebp,
libtiff,
libjpeg,
jasper,
}:
stdenv.mkDerivation rec {
pname = "xv";
version = "4.1.1";
src = fetchFromGitHub {
owner = "jasper-software";
repo = "xv";
rev = "v${version}";
sha256 = "vwSUKWr4Hffx04ATUI58m7UOS/lVTnIVDC3ZTWRwJMM=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ xorg.libX11 xorg.libXt libpng libwebp libtiff jasper ];
meta = {
description = "Classic image viewer and editor for X.";
homepage = "http://www.trilon.com/xv/";
license = {
fullName = "XV License";
url = "https://github.com/jasper-software/xv/blob/main/src/README";
free = false;
};
maintainers = with lib.maintainers; [ galen ];
};
}

View File

@ -1853,7 +1853,6 @@ mapAliases ({
); # Added 2022-08-02
xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22
xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25
xv = xxv; # Added 2020-02-22
xvidcap = throw "'xvidcap' has been removed because of a broken dependency"; # Added 2022-11-08
xvfb_run = xvfb-run; # Added 2021-05-07

View File

@ -36145,6 +36145,8 @@ with pkgs;
xnotify = callPackage ../tools/X11/xnotify { };
xv = callPackage ../applications/graphics/xv { };
xygrib = libsForQt5.callPackage ../applications/misc/xygrib { };
xzgv = callPackage ../applications/graphics/xzgv { };