Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libsForQt5,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "yuview";
|
|
version = "2.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IENT";
|
|
repo = "YUView";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-YuKPRYBr1CKrwickk1T89ZCYFt99jP86tdanp+JZMO4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
libsForQt5.qmake
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
|
|
patches = [ ./disable_version_check.patch ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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 = ''
|
|
YUView is a Qt based YUV player with an advanced analytic toolset for
|
|
Linux, Windows and Mac. At its core, YUView is a powerful YUV player that
|
|
can open and show almost any YUV format. With its simple interface it is
|
|
easy to navigate through sequences and inspect details and a side by side
|
|
and comparison view can help to spot differences between two sequences. A
|
|
sophisticated statistics renderer can overlay the video with supplemental
|
|
information. More features include playlists, support for visual tests and
|
|
presentations, support of compressed formats (through libde265 and
|
|
FFmpeg), support for raw RGB files as well as image files and image
|
|
sequences, and many more. Further information can be found in the YUV help
|
|
in the application itself or in our wiki.
|
|
'';
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ leixb ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "YUView";
|
|
};
|
|
})
|