diff options
author | David Dashyan <mail@davie.li> | 2020-12-12 23:03:03 +0300 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-12-12 16:55:51 -0500 |
commit | 18918ebeeb152731e06634a003e8cf3edd24f6a3 (patch) | |
tree | a9fad3f2e3e50471cc7a9ab047da4b8ce66d1d9d | |
parent | f3340338d56c2596cc1ed48f05462e333b7cce5e (diff) | |
download | guix-18918ebeeb152731e06634a003e8cf3edd24f6a3.tar.gz guix-18918ebeeb152731e06634a003e8cf3edd24f6a3.zip |
gnu: Add openfortivpn
* gnu/packages/vpn.scm (openfortivpn): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/vpn.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 04c34c3d4d..0c504ca6cc 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com> ;;; Copyright © 2020 Ivan Kozlov <kanichos@yandex.ru> +;;; Copyright © 2020 David Dashyan <mail@davie.li> ;;; ;;; This file is part of GNU Guix. ;;; @@ -287,6 +288,34 @@ and probably others.") (license license:lgpl2.1) (home-page "https://www.infradead.org/openconnect/"))) +(define-public openfortivpn + (package + (name "openfortivpn") + (version "1.15.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/adrienverge/openfortivpn") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1qsfgpxg553s8rc9cyrc4k96z0pislxsdxb9wyhp8fdprkak2mw2")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("autotools" ,automake) + ("pkg-config" ,pkg-config))) + (inputs + `(("openssl" ,openssl) + ("ppp" ,ppp))) + (home-page "https://github.com/adrienverge/openfortivpn") + (synopsis "Client for PPP+SSL VPN tunnel services") + (description "Openfortivpn is a client for PPP+SSL VPN tunnel services. It +spawns a pppd process and operates the communication between the gateway and +this process. It is compatible with Fortinet VPNs.") + (license license:gpl3+))) + (define-public openvpn (package (name "openvpn") |