gnu: libphidget: Update source uri.

* gnu/packages/libphidget.scm (libphidget)[source]: Update source uri.
[home-page]: Use https.
This commit is contained in:
Efraim Flashner 2019-01-01 09:30:04 +02:00
parent 789fc77bef
commit b114aba284
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -30,14 +31,15 @@ (define-public libphidget
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"http://www.phidgets.com/downloads/libraries/libphidget_" "https://www.phidgets.com/downloads/phidget21/libraries/"
"linux/libphidget/libphidget_"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 "09ibrz1df5ajqcm9vmx6zw8qama2rzf0961yhmmfsy629qfhyrk0")))) (base32 "09ibrz1df5ajqcm9vmx6zw8qama2rzf0961yhmmfsy629qfhyrk0"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("libusb" ,libusb))) (inputs `(("libusb" ,libusb)))
(outputs '("out" "debug")) (outputs '("out" "debug"))
(home-page "http://www.phidgets.com/") (home-page "https://www.phidgets.com/")
(license lgpl3+) (license lgpl3+)
(synopsis "C library to manipulate Phidgets") (synopsis "C library to manipulate Phidgets")
(description synopsis))) (description synopsis)))