tageditor: 3.3.10 -> 3.7.5

This commit is contained in:
zendo 2022-09-10 16:55:03 +08:00
parent 33b4303a8c
commit cb007d184a

View file

@ -1,9 +1,8 @@
{ stdenv { stdenv
, pkgs , lib
, fetchFromGitHub , fetchFromGitHub
, pkg-config , pkg-config
, cmake , cmake
, cpp-utilities , cpp-utilities
, qtutilities , qtutilities
, mp4v2 , mp4v2
@ -18,13 +17,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tageditor"; pname = "tageditor";
version = "3.3.10"; version = "3.7.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "martchus"; owner = "martchus";
repo = "tageditor"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "16cmq7dyalcwc8gx1y9acngw5imjh8ydp4prxy7qpzk4fj3kpsak"; hash = "sha256-/0zzzOEkzNr1aIpPFdflFaM/0HTs3TlIRxau3Yt+Hog=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -32,10 +31,10 @@ stdenv.mkDerivation rec {
cmake cmake
wrapQtAppsHook wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
mp4v2 mp4v2
libid3tag libid3tag
pkg-config
qtbase qtbase
qttools qttools
qtx11extras qtx11extras
@ -45,7 +44,7 @@ stdenv.mkDerivation rec {
tagparser tagparser
]; ];
meta = with pkgs.lib; { meta = with lib; {
homepage = "https://github.com/Martchus/tageditor"; homepage = "https://github.com/Martchus/tageditor";
description = "A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska"; description = "A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska";
license = licenses.gpl2; license = licenses.gpl2;
@ -53,4 +52,3 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }