diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2018-06-30 16:31:28 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-30 17:50:19 +0200 |
| commit | b0c2c5abf3a55e634a952916059d6e905ecaef9b (patch) | |
| tree | f075940504a7993f4f914ca1cb169259a56504b4 | |
| parent | 7c6468c980f86612ba53c76a5efe68f5787b9f1d (diff) | |
gnu: Add perl-musicbrainz-discid.
* gnu/packages/music.scm (perl-musicbrainz-discid): New variable.
| -rw-r--r-- | gnu/packages/music.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 824b03dc0cb..394eceeedcb 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | ;;; Copyright © 2018 nee <nee.git@hidamari.blue> | 17 | ;;; Copyright © 2018 nee <nee.git@hidamari.blue> |
| 18 | ;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at> | 18 | ;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at> |
| 19 | ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com> | 19 | ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com> |
| 20 | ;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org> | ||
| 20 | ;;; | 21 | ;;; |
| 21 | ;;; This file is part of GNU Guix. | 22 | ;;; This file is part of GNU Guix. |
| 22 | ;;; | 23 | ;;; |
| @@ -43,6 +44,7 @@ | |||
| 43 | #:use-module (guix build-system ant) | 44 | #:use-module (guix build-system ant) |
| 44 | #:use-module (guix build-system cmake) | 45 | #:use-module (guix build-system cmake) |
| 45 | #:use-module (guix build-system meson) | 46 | #:use-module (guix build-system meson) |
| 47 | #:use-module (guix build-system perl) | ||
| 46 | #:use-module (guix build-system python) | 48 | #:use-module (guix build-system python) |
| 47 | #:use-module (guix build-system scons) | 49 | #:use-module (guix build-system scons) |
| 48 | #:use-module (guix build-system glib-or-gtk) | 50 | #:use-module (guix build-system glib-or-gtk) |
| @@ -4019,6 +4021,30 @@ mb_client, is a development library geared towards developers who wish to add | |||
| 4019 | MusicBrainz lookup capabilities to their applications.") | 4021 | MusicBrainz lookup capabilities to their applications.") |
| 4020 | (license license:lgpl2.1+))) | 4022 | (license license:lgpl2.1+))) |
| 4021 | 4023 | ||
| 4024 | (define-public perl-musicbrainz-discid | ||
| 4025 | (package | ||
| 4026 | (name "perl-musicbrainz-discid") | ||
| 4027 | (version "0.04") | ||
| 4028 | (source (origin | ||
| 4029 | (method url-fetch) | ||
| 4030 | (uri (string-append | ||
| 4031 | "mirror://cpan/authors/id/N/NJ/NJH/MusicBrainz-DiscID-" | ||
| 4032 | version ".tar.gz")) | ||
| 4033 | (sha256 | ||
| 4034 | (base32 | ||
| 4035 | "1i4qk1qfcmxdibqkyfjrrjdq2zk42vjcz590qgiyc47fi9p6xx1j")))) | ||
| 4036 | (build-system perl-build-system) | ||
| 4037 | (native-inputs `(("pkg-config" ,pkg-config) | ||
| 4038 | ("which" ,which))) | ||
| 4039 | (inputs `(("libdiscid" ,libdiscid))) | ||
| 4040 | (home-page "https://metacpan.org/release/MusicBrainz-DiscID") | ||
| 4041 | (synopsis "Perl interface to the MusicBrainz libdiscid library") | ||
| 4042 | (description | ||
| 4043 | "The @code{MusicBrainz::DiscID} module is a Perl interface to the | ||
| 4044 | MusicBrainz libdiscid library, allowing you to manipulate digital audio | ||
| 4045 | compact disc (CDDA) identifiers.") | ||
| 4046 | (license license:gpl2))) | ||
| 4047 | |||
| 4022 | (define-public clyrics | 4048 | (define-public clyrics |
| 4023 | (package | 4049 | (package |
| 4024 | (name "clyrics") | 4050 | (name "clyrics") |
