mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libphidget: Update source uri.
* gnu/packages/libphidget.scm (libphidget)[source]: Update source uri. [home-page]: Use https.
This commit is contained in:
parent
789fc77bef
commit
b114aba284
1 changed files with 4 additions and 2 deletions
|
@ -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)))
|
||||||
|
|
Loading…
Reference in a new issue