diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-02-06 13:03:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-02-06 13:03:26 +0100 |
commit | ba88eea2b3a8a33ecd7fc0ec64e3917c6c2fe21d (patch) | |
tree | 75c68e44d3d76440f416552711b1a47ec83e411e /gnu/packages/libphidget.scm | |
parent | f380f9d55e6757c242acf6c71c4a3ccfcdb066b2 (diff) | |
parent | 4aeb7f34c948f32363f2ae29c6942c6328df758c (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/libphidget.scm')
-rw-r--r-- | gnu/packages/libphidget.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/libphidget.scm b/gnu/packages/libphidget.scm index 0eaf55df33..7b6b7dd07d 100644 --- a/gnu/packages/libphidget.scm +++ b/gnu/packages/libphidget.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,18 +27,19 @@ (define-public libphidget (package (name "libphidget") - (version "2.1.8.20130320") + (version "2.1.8.20180607") (source (origin (method url-fetch) (uri (string-append - "http://www.phidgets.com/downloads/libraries/libphidget_" + "https://www.phidgets.com/downloads/phidget21/libraries/" + "linux/libphidget/libphidget_" version ".tar.gz")) (sha256 - (base32 "09ibrz1df5ajqcm9vmx6zw8qama2rzf0961yhmmfsy629qfhyrk0")))) + (base32 "1mdw8k13yy5dq3r41v9w5yijdk87alzix0qagslc2mxh1pf17npn")))) (build-system gnu-build-system) (inputs `(("libusb" ,libusb))) (outputs '("out" "debug")) - (home-page "http://www.phidgets.com/") + (home-page "https://www.phidgets.com/") (license lgpl3+) (synopsis "C library to manipulate Phidgets") (description synopsis))) |