yuview: 2.13 -> 2.14

Diff: https://github.com/IENT/YUView/compare/v2.13...v2.14

emaryn eacd2bfd f7cbcfd0

+10 -9
+10 -9
pkgs/applications/video/yuview/default.nix
··· 6 6 wrapQtAppsHook, 7 7 }: 8 8 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "yuview"; 11 - version = "2.13"; 11 + version = "2.14"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "IENT"; 15 15 repo = "YUView"; 16 - rev = "v.${version}"; 17 - sha256 = "sha256-2mNIuyY/ni+zkUc8V/iXUEa7JeBJyOnNod7friMYAm8="; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-YuKPRYBr1CKrwickk1T89ZCYFt99jP86tdanp+JZMO4="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ ··· 26 26 27 27 enableParallelBuilding = true; 28 28 29 - meta = with lib; { 29 + meta = { 30 + changelog = "https://github.com/IENT/YUView/releases/tag/${finalAttrs.src.tag}"; 30 31 homepage = "https://ient.github.io/YUView"; 31 32 description = "YUV Viewer and Analysis Tool"; 32 33 longDescription = '' ··· 42 43 sequences, and many more. Further information can be found in the YUV help 43 44 in the application itself or in our wiki. 44 45 ''; 45 - license = licenses.gpl3Plus; 46 - maintainers = with maintainers; [ leixb ]; 47 - platforms = platforms.unix; 46 + license = lib.licenses.gpl3Plus; 47 + maintainers = with lib.maintainers; [ leixb ]; 48 + platforms = lib.platforms.unix; 48 49 mainProgram = "YUView"; 49 50 }; 50 - } 51 + })