[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: libmpdclient: Update to 2.14.
From: |
Leo Famulari |
Subject: |
01/03: gnu: libmpdclient: Update to 2.14. |
Date: |
Thu, 22 Feb 2018 01:40:41 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit c59ea46fd1050efca25e612306f8f8898cf168b5
Author: Leo Famulari <address@hidden>
Date: Thu Feb 22 01:33:21 2018 -0500
gnu: libmpdclient: Update to 2.14.
* gnu/packages/mpd.scm (libmpdclient): Update to 2.14.
[source]: Use HTTPS URL.
---
gnu/packages/mpd.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index ac1fe51..e2cc7ce 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2014 Cyrill Schenkel <address@hidden>
;;; Copyright © 2014 Ian Denhardt <address@hidden>
;;; Copyright © 2015 Paul van der Walt <address@hidden>
-;;; Copyright © 2016 Leo Famulari <address@hidden>
+;;; Copyright © 2016, 2018 Leo Famulari <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; 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)