lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #190151 from zendo/tageditor-up

authored by

Doron Behar and committed by
GitHub
7c83723f 80d4d591

+17 -14
+6 -8
pkgs/applications/audio/tageditor/default.nix
··· 1 1 { stdenv 2 - , pkgs 2 + , lib 3 3 , fetchFromGitHub 4 4 , pkg-config 5 5 , cmake 6 - 7 6 , cpp-utilities 8 7 , qtutilities 9 8 , mp4v2 ··· 18 17 19 18 stdenv.mkDerivation rec { 20 19 pname = "tageditor"; 21 - version = "3.3.10"; 20 + version = "3.7.5"; 22 21 23 22 src = fetchFromGitHub { 24 23 owner = "martchus"; 25 - repo = "tageditor"; 24 + repo = pname; 26 25 rev = "v${version}"; 27 - sha256 = "16cmq7dyalcwc8gx1y9acngw5imjh8ydp4prxy7qpzk4fj3kpsak"; 26 + hash = "sha256-/0zzzOEkzNr1aIpPFdflFaM/0HTs3TlIRxau3Yt+Hog="; 28 27 }; 29 28 30 29 nativeBuildInputs = [ ··· 32 31 cmake 33 32 wrapQtAppsHook 34 33 ]; 34 + 35 35 buildInputs = [ 36 36 mp4v2 37 37 libid3tag 38 - pkg-config 39 38 qtbase 40 39 qttools 41 40 qtx11extras ··· 45 44 tagparser 46 45 ]; 47 46 48 - meta = with pkgs.lib; { 47 + meta = with lib; { 49 48 homepage = "https://github.com/Martchus/tageditor"; 50 49 description = "A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska"; 51 50 license = licenses.gpl2; ··· 53 52 platforms = platforms.linux; 54 53 }; 55 54 } 56 -
+2 -2
pkgs/development/libraries/qtutilities/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "qtutilities"; 12 - version = "6.7.0"; 12 + version = "6.8.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Martchus"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-RjVmrdUHDBelwagWD5Mx+S3tdFO7I0+8RmFR7hwoe8o="; 18 + hash = "sha256-I8VvVGlz6rQLWd7Fq0q58VFFj+EHGiwkayam2Cj3aJQ="; 19 19 }; 20 20 21 21 buildInputs = [ qtbase cpp-utilities ];
+9 -4
pkgs/development/libraries/tagparser/default.nix
··· 1 1 { stdenv 2 - , pkgs 2 + , lib 3 3 , fetchFromGitHub 4 4 , cmake 5 5 , cpp-utilities 6 6 , zlib 7 + , isocodes 7 8 }: 8 9 9 10 stdenv.mkDerivation rec { 10 11 pname = "tagparser"; 11 - version = "9.4.0"; 12 + version = "11.5.0"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "Martchus"; 15 16 repo = "tagparser"; 16 17 rev = "v${version}"; 17 - sha256 = "097dq9di19d3mvnlrav3fm78gzjni5babswyv10xnrxfhnf14f6x"; 18 + hash = "sha256-qgopl32cFQFQTYu9WBOzPeU69J8K49SREX7X0Pw7Als="; 18 19 }; 19 20 20 21 nativeBuildInputs = [ cmake ]; ··· 23 24 cpp-utilities zlib 24 25 ]; 25 26 26 - meta = with pkgs.lib; { 27 + cmakeFlags = [ 28 + "-DLANGUAGE_FILE_ISO_639_2=${isocodes}/share/iso-codes/json/iso_639-2.json" 29 + ]; 30 + 31 + meta = with lib; { 27 32 homepage = "https://github.com/Martchus/tagparser"; 28 33 description = "C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags"; 29 34 license = licenses.gpl2;