me
/
guix
Archived
1
0
Fork 0

gnu: eid-mw: Don't use unstable tarball.

* gnu/packages/security-token.scm (eid-mw)[source]: Use GIT-FETCH.
master
Tobias Geerinckx-Rice 2018-06-22 21:08:52 +02:00
parent eeb8b0e631
commit 13151c326a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -28,6 +28,7 @@
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system glib-or-gtk)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
@ -92,15 +93,14 @@ readers and is needed to communicate with such devices through the
(package (package
(name "eid-mw") (name "eid-mw")
(version "4.3.4") (version "4.3.4")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/Fedict/eid-mw/archive/v" (uri (git-reference
version ".tar.gz")) (url "https://github.com/Fedict/eid-mw")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(sha256 (sha256
(base32 (base32 "0hrlk0k6vij2jjfwwqgcwv33aivln9flpkxbngk7hvg1s3al7ya1"))))
"1ay9znry9dkhhn783paqy8czvv3w5gdpmq8ag8znx9akza8c929z"))))
(build-system glib-or-gtk-build-system) (build-system glib-or-gtk-build-system)
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("autoconf" ,autoconf)