2012-09-04 23:15:23 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages, gettext, pyqt4
|
|
|
|
, pkgconfig, libdiscid, libofa, ffmpeg }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "picard-${version}";
|
|
|
|
namePrefix = "";
|
2013-08-14 10:54:49 +00:00
|
|
|
version = "1.2";
|
2012-09-04 23:15:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/${name}.tar.gz";
|
2013-08-14 10:54:49 +00:00
|
|
|
md5 = "d1086687b7f7b0d359a731b1a25e7b66";
|
2012-09-04 23:15:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
ffmpeg
|
|
|
|
libofa
|
|
|
|
gettext
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pythonPackages.mutagen
|
|
|
|
pyqt4
|
|
|
|
libdiscid
|
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
python setup.py config
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
python setup.py build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://musicbrainz.org/doc/MusicBrainz_Picard";
|
|
|
|
description = "The official MusicBrainz tagger";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|