diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-24 02:00:03 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-24 02:00:00 +0200 |
commit | 607722a835e18493f71c64c95b1d65cf3b51668d (patch) | |
tree | 119fc17bd03dc953b5d5c3b463a92a81e5503234 /gnu | |
parent | 893f58adcaeffb35fa836913a7dfda298c6705cd (diff) | |
download | guix-607722a835e18493f71c64c95b1d65cf3b51668d.tar guix-607722a835e18493f71c64c95b1d65cf3b51668d.tar.gz |
gnu: eid-mw: Update to 5.1.6.
* gnu/packages/security-token.scm (eid-mw): Update to 5.1.6.
[inputs]: Remove libbsd as promised.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/security-token.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 74ea57137f..9ffe4b185f 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -59,7 +59,6 @@ #:use-module (gnu packages gnome) #:use-module (gnu packages gnupg) #:use-module (gnu packages gtk) - #:use-module (gnu packages libbsd) #:use-module (gnu packages libusb) #:use-module (gnu packages linux) #:use-module (gnu packages man) @@ -119,8 +118,7 @@ readers and is needed to communicate with such devices through the (define-public eid-mw (package (name "eid-mw") - ;; When updating, remove the short-lived libbsd input and module import! - (version "5.0.28") + (version "5.1.6") (source (origin (method git-fetch) @@ -129,7 +127,7 @@ readers and is needed to communicate with such devices through the (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0fmpdx09a60ndbsvy3m6w77naqy3j6k2ydq6jdcmdvxnr31z7fmf")))) + (base32 "19sq9bs1580zrjw0cxykdvrm1rwfw8n0vbvy9kdjnykjjnb7g6g1")))) (build-system glib-or-gtk-build-system) (native-inputs `(("autoconf" ,autoconf) @@ -142,7 +140,6 @@ readers and is needed to communicate with such devices through the ("perl" ,perl))) (inputs (list curl - libbsd openssl gtk+ pcsc-lite |