diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-10-25 20:02:08 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-10-25 20:02:08 +0200 |
commit | b7883b111d92746ff3bedb6f4bb4c1578068fc59 (patch) | |
tree | 37690ae3dd18cbbba3abe68986ae32b913afd407 /gnu/packages/music.scm | |
parent | c27e8c1abd8ad66dbfce3ef56ee0fd8919906e3b (diff) | |
parent | 63bbf38fb177bc28e6b8c8692815812e636d6e18 (diff) | |
download | patches-b7883b111d92746ff3bedb6f4bb4c1578068fc59.tar patches-b7883b111d92746ff3bedb6f4bb4c1578068fc59.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 6aca39cedd..2fd38362c2 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net> ;;; Copyright © 2017 Rodger Fox <thylakoid@openmailbox.org> ;;; Copyright © 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr> +;;; Copyright © 2017 Pierre Langlois <pierre.langlois@gmx.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3334,3 +3335,30 @@ notation and includes basic support for digital audio.") (description "Sorcer is a wavetable LV2 plugin synthesizer, targeted at the electronic or dubstep genre.") (license license:gpl3+))) + +(define-public libechonest + (package + (name "libechonest") + (version "2.3.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "git://anongit.kde.org/libechonest.git") + (commit version))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0xbavf9f355dl1d3qv59x4ryypqrdanh9xdvw2d0q66l008crdkq")))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f ; Tests require Internet access + #:configure-flags '("-DBUILD_WITH_QT4=OFF"))) + (inputs + `(("qtbase" ,qtbase) + ("qjson" ,qjson))) + (home-page "https://projects.kde.org/projects/playground/libs/libechonest") + (synopsis "C++/Qt classes to interface with The Echo Nest API") + (description "@code{libechonest} is a collection of C++/Qt classes +designed to make a developer's life easy when trying to use the APIs provided +by The Echo Nest.") + (license license:gpl2+))) |