gnu: Add eyeD3.
* gnu/packages/mp3.scm (eyed3): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1c207a7658
commit
13ef3e997b
|
@ -33,12 +33,14 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages pcre)
|
#:use-module (gnu packages pcre)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
#:use-module (gnu packages linux) ;alsa-lib
|
#:use-module (gnu packages linux) ;alsa-lib
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system cmake))
|
#:use-module (guix build-system cmake))
|
||||||
|
|
||||||
(define-public libmad
|
(define-public libmad
|
||||||
|
@ -450,3 +452,32 @@ format.")
|
||||||
"Mpc123 is a command-line player for files in the Musepack audio
|
"Mpc123 is a command-line player for files in the Musepack audio
|
||||||
compression format (.mpc files).")
|
compression format (.mpc files).")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public eyed3
|
||||||
|
(package
|
||||||
|
(name "eyed3")
|
||||||
|
(version "0.7.8")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://eyed3.nicfit.net/releases/eyeD3-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1nv7nhfn1d0qm7rgkzksbccgqisng8klf97np0nwaqwd5dbmdf86"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:python ,python-2))
|
||||||
|
(native-inputs
|
||||||
|
`(("python2-setuptools" ,python2-setuptools)
|
||||||
|
("python2-nose" ,python2-nose)
|
||||||
|
("python2-sphinx" ,python2-sphinx)
|
||||||
|
("python2-coverage" ,python2-coverage)))
|
||||||
|
(synopsis "MP3 tag ID3 metadata editor")
|
||||||
|
(description "eyeD3 is a Python tool for working with audio files,
|
||||||
|
specifically mp3 files containing ID3 metadata (i.e. song info). It provides a
|
||||||
|
command-line tool (eyeD3) and a Python library (import eyed3) that can be used
|
||||||
|
to write your own applications or plugins that are callable from the
|
||||||
|
command-line tool.")
|
||||||
|
(home-page "http://eyed3.nicfit.net/")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in New Issue