yuview: 2.13 -> 2.14 (#414111)

This commit is contained in:
Gaétan Lepage
2025-06-17 21:20:40 +02:00
committed by GitHub
4 changed files with 13 additions and 17 deletions
@@ -2,31 +2,31 @@
lib,
stdenv,
fetchFromGitHub,
qmake,
wrapQtAppsHook,
libsForQt5,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "yuview";
version = "2.13";
version = "2.14";
src = fetchFromGitHub {
owner = "IENT";
repo = "YUView";
rev = "v.${version}";
sha256 = "sha256-2mNIuyY/ni+zkUc8V/iXUEa7JeBJyOnNod7friMYAm8=";
tag = "v${finalAttrs.version}";
hash = "sha256-YuKPRYBr1CKrwickk1T89ZCYFt99jP86tdanp+JZMO4=";
};
nativeBuildInputs = [
qmake
wrapQtAppsHook
libsForQt5.qmake
libsForQt5.wrapQtAppsHook
];
patches = [ ./disable_version_check.patch ];
enableParallelBuilding = true;
meta = with lib; {
meta = {
changelog = "https://github.com/IENT/YUView/releases/tag/${finalAttrs.src.tag}";
homepage = "https://ient.github.io/YUView";
description = "YUV Viewer and Analysis Tool";
longDescription = ''
@@ -42,9 +42,9 @@ stdenv.mkDerivation rec {
sequences, and many more. Further information can be found in the YUV help
in the application itself or in our wiki.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ leixb ];
platforms = platforms.unix;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ leixb ];
platforms = lib.platforms.unix;
mainProgram = "YUView";
};
}
})
-2
View File
@@ -14579,8 +14579,6 @@ with pkgs;
youtube-viewer = perlPackages.WWWYoutubeViewer;
yuview = libsForQt5.yuview;
zathuraPkgs = callPackage ../applications/misc/zathura { };
zathura = zathuraPkgs.zathuraWrapper;
-2
View File
@@ -326,8 +326,6 @@ makeScopeWithSplicing' {
xp-pen-g430-driver = callPackage ../os-specific/linux/xp-pen-drivers/g430 { };
xwaylandvideobridge = callPackage ../tools/wayland/xwaylandvideobridge { };
yuview = callPackage ../applications/video/yuview { };
}
))
);