lol
0
fork

Configure Feed

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

tagparser: init at 9.4.0

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>

+35
+33
pkgs/development/libraries/tagparser/default.nix
··· 1 + { stdenv 2 + , pkgs 3 + , fetchFromGitHub 4 + , cmake 5 + , cpp-utilities 6 + , zlib 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "tagparser"; 11 + version = "9.4.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Martchus"; 15 + repo = "tagparser"; 16 + rev = "v${version}"; 17 + sha256 = "097dq9di19d3mvnlrav3fm78gzjni5babswyv10xnrxfhnf14f6x"; 18 + }; 19 + 20 + nativeBuildInputs = [ cmake ]; 21 + 22 + buildInputs = [ 23 + cpp-utilities zlib 24 + ]; 25 + 26 + meta = with pkgs.lib; { 27 + homepage = "https://github.com/Martchus/tagparser"; 28 + description = "C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags"; 29 + license = licenses.gpl2; 30 + maintainers = [ maintainers.matthiasbeyer ]; 31 + }; 32 + } 33 +
+2
pkgs/top-level/all-packages.nix
··· 16817 16817 16818 16818 talloc = callPackage ../development/libraries/talloc { }; 16819 16819 16820 + tagparser = callPackage ../development/libraries/tagparser { }; 16821 + 16820 16822 tclap = callPackage ../development/libraries/tclap {}; 16821 16823 16822 16824 tcllib = callPackage ../development/libraries/tcllib { };