diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-20 17:36:56 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-20 17:36:56 +0100 |
commit | 7f69459aca16756f35f08049c64a1bd77d23f33e (patch) | |
tree | 1d267fb62feab89de5d97582672540cbaa37392c /gnu/packages/mp3.scm | |
parent | 4a82722a658220ec1e10f9f2d5d77407d38db90e (diff) | |
parent | b1989c12501e880afab62d3ff961791906fef350 (diff) | |
download | guix-7f69459aca16756f35f08049c64a1bd77d23f33e.tar guix-7f69459aca16756f35f08049c64a1bd77d23f33e.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/mp3.scm')
-rw-r--r-- | gnu/packages/mp3.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index 38467a94cc..6dc58e2cc8 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be> ;;; Copyright © 2017 Pierre Langlois <pierre.langlois@gmx.com> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -300,7 +301,7 @@ This package contains the binary.") (define-public mpg123 (package (name "mpg123") - (version "1.25.7") + (version "1.25.8") (source (origin (method url-fetch) (uri (list (string-append "mirror://sourceforge/mpg123/mpg123/" @@ -310,13 +311,13 @@ This package contains the binary.") version ".tar.bz2"))) (sha256 (base32 - "1ws40fglyyk51jvmz8gfapjkw1g51pkch1rffdsbh4b1yay5xc9i")))) + "16s9z1xc5kv1p90g42vsr9m4gq3dwjsmrj873x4i8601mvpm3nkr")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--with-default-audio=pulse"))) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("pulseaudio" ,pulseaudio) ("alsa-lib" ,alsa-lib))) - (home-page "http://www.mpg123.org/") + (home-page "https://www.mpg123.org/") (synopsis "Console MP3 player and decoder library") (description "Mpg123 is a real time MPEG 1.0/2.0/2.5 audio player/decoder for layers @@ -494,15 +495,15 @@ command-line tool.") (define-public chromaprint (package (name "chromaprint") - (version "1.4.2") + (version "1.4.3") (source (origin (method url-fetch) (uri (string-append - "https://bitbucket.org/acoustid/chromaprint/downloads/" - "chromaprint-" version ".tar.gz")) + "https://github.com/acoustid/chromaprint/releases/download/v" + version "/chromaprint-" version ".tar.gz")) (sha256 (base32 - "1m5l4rfkwz6m77m3qjs41n7rmscw0hfvv4z79srpbpa1x2khk5lq")))) + "10kz8lncal4s2rp2rqpgc6xyjp0jzcrihgkx7chf127vfs5n067a")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; tests require googletest *sources* |