nixpkgs/pkgs/applications/audio/kid3/default.nix
Ryan Mulligan 2e55a16b5c kid3: 3.4.2 -> 3.5.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1/bin/kid3-cli -h` got 0 exit code
- ran `/nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1/bin/kid3-cli --help` got 0 exit code
- ran `/nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1/bin/kid3-cli -h` and found version 3.5.1
- ran `/nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1/bin/kid3-cli --help` and found version 3.5.1
- found 3.5.1 with grep in /nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1
- found 3.5.1 in filename of file in /nix/store/lnz0zqq75d7dpmaqj1g7i5yda4v12idl-kid3-3.5.1

cc "@AndersonTorres"
2018-02-26 19:47:05 -08:00

77 lines
2.7 KiB
Nix

{ stdenv, fetchurl
, pkgconfig, cmake
, docbook_xml_dtd_45, docbook_xsl, libxslt
, python, ffmpeg, mp4v2, flac, libogg, libvorbis
, phonon, automoc4, chromaprint, id3lib, taglib
, qt, zlib, readline
, makeWrapper
}:
stdenv.mkDerivation rec {
name = "kid3-${version}";
version = "3.5.1";
src = fetchurl {
url = "mirror://sourceforge/project/kid3/kid3/${version}/${name}.tar.gz";
sha256 = "09iryxnhg8d9q36a4brb25bqkjprkx5kl0x7vyy82gxivqk0ihl8";
};
buildInputs = with stdenv.lib;
[ pkgconfig cmake python ffmpeg docbook_xml_dtd_45 docbook_xsl libxslt
phonon automoc4 chromaprint id3lib taglib mp4v2 flac libogg libvorbis
qt zlib readline makeWrapper ];
cmakeFlags = [ "-DWITH_APPS=Qt;CLI" ];
NIX_LDFLAGS = "-lm -lpthread";
preConfigure = ''
export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/"
'';
postInstall = ''
wrapProgram $out/bin/kid3-qt --prefix QT_PLUGIN_PATH : $out/lib/qt4/plugins
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A simple and powerful audio tag editor";
longDescription = ''
If you want to easily tag multiple MP3, Ogg/Vorbis, FLAC, MPC,
MP4/AAC, MP2, Opus, Speex, TrueAudio, WavPack, WMA, WAV and AIFF
files (e.g. full albums) without typing the same information
again and again and have control over both ID3v1 and ID3v2 tags,
then Kid3 is the program you are looking for.
With Kid3 you can:
- Edit ID3v1.1 tags;
- Edit all ID3v2.3 and ID3v2.4 frames;
- Convert between ID3v1.1, ID3v2.3 and ID3v2.4 tags
- Edit tags in MP3, Ogg/Vorbis, FLAC, MPC, MP4/AAC, MP2, Opus,
Speex, TrueAudio, WavPack, WMA, WAV, AIFF files and tracker
modules (MOD, S3M, IT, XM);
- Edit tags of multiple files, e.g. the artist, album, year and
genre of all files of an album typically have the same values
and can be set together;
- Generate tags from filenames;
- Generate tags from the contents of tag fields;
- Generate filenames from tags;
- Rename and create directories from tags;
- Generate playlist files;
- Automatically convert upper and lower case and replace strings;
- Import from gnudb.org, TrackType.org, MusicBrainz, Discogs,
Amazon and other sources of album data;
- Export tags as CSV, HTML, playlists, Kover XML and in other
formats;
- Edit synchronized lyrics and event timing codes, import and
export LRC files
'';
homepage = http://kid3.sourceforge.net/;
license = licenses.lgpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}
# TODO: Qt5 support - not so urgent!