tagparser: init at 9.4.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
26187c65b6
commit
aeab74df01
33
pkgs/development/libraries/tagparser/default.nix
Normal file
33
pkgs/development/libraries/tagparser/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv
|
||||
, pkgs
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, cpp-utilities
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tagparser";
|
||||
version = "9.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Martchus";
|
||||
repo = "tagparser";
|
||||
rev = "v${version}";
|
||||
sha256 = "097dq9di19d3mvnlrav3fm78gzjni5babswyv10xnrxfhnf14f6x";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [
|
||||
cpp-utilities zlib
|
||||
];
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
homepage = "https://github.com/Martchus/tagparser";
|
||||
description = "C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.matthiasbeyer ];
|
||||
};
|
||||
}
|
||||
|
@ -16817,6 +16817,8 @@ in
|
||||
|
||||
talloc = callPackage ../development/libraries/talloc { };
|
||||
|
||||
tagparser = callPackage ../development/libraries/tagparser { };
|
||||
|
||||
tclap = callPackage ../development/libraries/tclap {};
|
||||
|
||||
tcllib = callPackage ../development/libraries/tcllib { };
|
||||
|
Loading…
Reference in New Issue
Block a user