1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

taglib: update description and licenses, add maintainer

This commit is contained in:
Thomas Tuegel 2017-12-11 12:21:09 -06:00
parent ae1ba39c7d
commit ba0c962352
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59

View file

@ -8,17 +8,23 @@ stdenv.mkDerivation rec {
sha256 = "0ssjcdjv4qf9liph5ry1kngam1y7zp8fzr9xv4wzzrma22kabldn";
};
cmakeFlags = "-DWITH_ASF=ON -DWITH_MP4=ON";
cmakeFlags = [ "-DWITH_ASF=ON" "-DWITH_MP4=ON" ];
buildInputs = [ zlib ];
nativeBuildInputs = [ cmake ];
meta = {
meta = with stdenv.lib; {
homepage = http://taglib.org/;
repositories.git = git://github.com/taglib/taglib.git;
description = "A library for reading and editing the meta-data of several popular audio formats";
shortDescription = "A library for reading and editing audio file metadata.";
description = ''
TagLib is a library for reading and editing the meta-data of several
popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3
files, Ogg Vorbis comments and ID3 tags and Vorbis comments in FLAC, MPC,
Speex, WavPack, TrueAudio, WAV, AIFF, MP4 and ASF files.
'';
license = with licenses; [ lgpl3 mpl11 ];
inherit (cmake.meta) platforms;
maintainers = [ ];
maintainers = with maintainers; [ ttuegel ];
};
}