2016-08-14 10:37:20 +00:00
|
|
|
{ stdenv, pythonPackages, fetchurl, gettext
|
2014-10-29 17:45:56 +00:00
|
|
|
, pkgconfig, libofa, ffmpeg, chromaprint
|
2013-08-14 16:39:35 +00:00
|
|
|
}:
|
2012-09-04 23:15:23 +00:00
|
|
|
|
2016-08-14 10:37:20 +00:00
|
|
|
let
|
|
|
|
version = "1.3.2";
|
|
|
|
in pythonPackages.buildPythonApplication {
|
2012-09-04 23:15:23 +00:00
|
|
|
name = "picard-${version}";
|
2014-12-18 22:15:36 +00:00
|
|
|
namePrefix = "";
|
2012-09-04 23:15:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-10 00:21:41 +00:00
|
|
|
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
|
|
|
|
sha256 = "0821xb7gyg0rhch8s3qkzmak90wjpcxkv9a364yv6bmqc12j6a77";
|
2012-09-04 23:15:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
ffmpeg
|
|
|
|
libofa
|
|
|
|
gettext
|
|
|
|
];
|
|
|
|
|
2016-08-14 10:37:20 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2012-09-04 23:15:23 +00:00
|
|
|
pyqt4
|
2014-10-29 17:45:56 +00:00
|
|
|
mutagen
|
2016-08-14 10:37:20 +00:00
|
|
|
discid
|
2012-09-04 23:15:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2014-08-23 21:56:06 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-09-04 23:15:23 +00:00
|
|
|
homepage = "http://musicbrainz.org/doc/MusicBrainz_Picard";
|
|
|
|
description = "The official MusicBrainz tagger";
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-08-23 21:56:06 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2012-09-04 23:15:23 +00:00
|
|
|
};
|
|
|
|
}
|