mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add xl2tpd.
* gnu/packages/vpn.scm (xl2tpd): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
0dc7d298a3
commit
1b17c23ebc
1 changed files with 29 additions and 0 deletions
|
@ -35,6 +35,7 @@ (define-module (gnu packages vpn)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
|
@ -517,3 +518,31 @@ (define-public wireguard
|
||||||
that can be applied to a Linux kernel source tree in order to build it with
|
that can be applied to a Linux kernel source tree in order to build it with
|
||||||
WireGuard support.")
|
WireGuard support.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public xl2tpd
|
||||||
|
(package
|
||||||
|
(name "xl2tpd")
|
||||||
|
(version "1.3.13")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/xelerance/xl2tpd")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1nzkmhi9arwd4smhr07l0sssx46w48z0cblv7xcz25wg4hw86mcd"))
|
||||||
|
(file-name (string-append "xl2tpd-" version "-checkout"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags (list (string-append "DESTDIR=" %output)
|
||||||
|
"CC=gcc")
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(delete 'configure))
|
||||||
|
#:tests? #f)) ;; no tests provided
|
||||||
|
(inputs `(("libpcap" ,libpcap)))
|
||||||
|
(home-page "https://www.xelerance.com/software/xl2tpd/")
|
||||||
|
(synopsis "Layer 2 Tunnelling Protocol Daemon (RFC 2661)")
|
||||||
|
(description
|
||||||
|
"xl2tpd is an implementation of the Layer 2 Tunnelling Protocol (RFC 2661).
|
||||||
|
L2TP allows you to tunnel PPP over UDP.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Reference in a new issue