mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
openconnect 8.20 upstream
This commit is contained in:
parent
ed0c07bf0a
commit
7f25d70b67
1 changed files with 22 additions and 0 deletions
22
glicid/packages/vpn.scm
Normal file
22
glicid/packages/vpn.scm
Normal file
|
@ -0,0 +1,22 @@
|
|||
(define-module (glicid packages vpn)
|
||||
#:use-module (guix packages)
|
||||
#:use-module ((gnu packages vpn) #:prefix gnu:)
|
||||
#:use-module (guix download)
|
||||
)
|
||||
|
||||
(define-public openconnect-upstream
|
||||
(package
|
||||
(inherit gnu:openconnect)
|
||||
(version "8.20")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.infradead.org/pub/openconnect/download"
|
||||
"openconnect-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1cdsx4nsrwawbsisfkldfc9i4qn60g03vxb13nzppr2br9p4rrih"))))
|
||||
|
||||
(name "openconnect-upstream")
|
||||
; )
|
||||
)
|
||||
)
|
||||
|
Loading…
Add table
Reference in a new issue