diff options
author | Leo Famulari <leo@famulari.name> | 2018-02-22 01:33:21 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-02-22 01:40:24 -0500 |
commit | c59ea46fd1050efca25e612306f8f8898cf168b5 (patch) | |
tree | 3b8d76f8fac02e41499b7a5ad9ad2879d4ec28e0 | |
parent | 267379f852f9d6d00c76120963711d54357ba53d (diff) | |
download | patches-c59ea46fd1050efca25e612306f8f8898cf168b5.tar patches-c59ea46fd1050efca25e612306f8f8898cf168b5.tar.gz |
gnu: libmpdclient: Update to 2.14.
* gnu/packages/mpd.scm (libmpdclient): Update to 2.14.
[source]: Use HTTPS URL.
-rw-r--r-- | gnu/packages/mpd.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index ac1fe51f15..e2cc7ce2b4 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> -;;; Copyright © 2016 Leo Famulari <leo@famulari.name> +;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. @@ -56,16 +56,16 @@ (define-public libmpdclient (package (name "libmpdclient") - (version "2.13") + (version "2.14") (source (origin (method url-fetch) (uri - (string-append "http://musicpd.org/download/libmpdclient/" + (string-append "https://musicpd.org/download/libmpdclient/" (car (string-split version #\.)) "/libmpdclient-" version ".tar.xz")) (sha256 (base32 - "0pflbv2jzik7yxnacci1iqs0awy1i5ipwn67xk0hg9r0pi9bs5ai")))) + "0whk0qw0lsd3kaimdznz0c45bfym0p4885zf4b7pfc7y3dwy510a")))) (build-system meson-build-system) (native-inputs `(("pkg-config" ,pkg-config) |