mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-12 18:10:47 +02:00
gnu: go-github-com-apparentlymart-go-openvpn-mgmt: Move to golang-crypto.
* gnu/packages/golang.scm (go-github-com-apparentlymart-go-openvpn-mgmt): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. * gnu/packages/vpn.scm: Add (gnu packages golang-crypto). Change-Id: I66bdb3c2999c01a7d78ad58d42a427c5860896af
This commit is contained in:
parent
b94d216afb
commit
f37c215d24
3 changed files with 32 additions and 31 deletions
|
@ -330,6 +330,37 @@ Go 1.20 @code{crypto/ecdh} standard package.")
|
||||||
cryptographic standards that are not included in the Go standard library.")
|
cryptographic standards that are not included in the Go standard library.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
;; XXX: Deprecated in upstream: This repository has been archived by the owner
|
||||||
|
;; on Nov 10, 2020. It is now read-only.
|
||||||
|
;; Consider to remove when nothing is depend on it.
|
||||||
|
(define-public go-github-com-apparentlymart-go-openvpn-mgmt
|
||||||
|
(let ((commit "4d2ce95ae600ee04eeb020ee0997aabb82752210")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-apparentlymart-go-openvpn-mgmt")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/apparentlymart/go-openvpn-mgmt")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1dn431jnswg5ns1ah10wswnw6wiv48zq21zr5xp1178l4waswj7k"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:skip-build? #t
|
||||||
|
#:import-path "github.com/apparentlymart/go-openvpn-mgmt"))
|
||||||
|
(home-page "https://github.com/apparentlymart/go-openvpn-mgmt")
|
||||||
|
(synopsis "Go client library for OpenVPN's management protocol")
|
||||||
|
(description
|
||||||
|
"Go-OpenVPN-Mgmt implements a client for the OpenVPN management
|
||||||
|
interface. It can be used to monitor and control an OpenVPN process running
|
||||||
|
with its management port enabled.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-bradenhilton-cityhash
|
(define-public go-github-com-bradenhilton-cityhash
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-bradenhilton-cityhash")
|
(name "go-github-com-bradenhilton-cityhash")
|
||||||
|
|
|
@ -1563,37 +1563,6 @@ incorporates ideas and concepts from Philipp Winter's ScrambleSuit protocol.")
|
||||||
"go-gitlab-torproject-org-tpo-anti-censorship-pluggable-transports-lyrebird"
|
"go-gitlab-torproject-org-tpo-anti-censorship-pluggable-transports-lyrebird"
|
||||||
lyrebird))
|
lyrebird))
|
||||||
|
|
||||||
;; XXX: Deprecated in upstream: This repository has been archived by the owner
|
|
||||||
;; on Nov 10, 2020. It is now read-only.
|
|
||||||
;; Consider to remove when nothing is depend on it.
|
|
||||||
(define-public go-github-com-apparentlymart-go-openvpn-mgmt
|
|
||||||
(let ((commit "4d2ce95ae600ee04eeb020ee0997aabb82752210")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-apparentlymart-go-openvpn-mgmt")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri
|
|
||||||
(git-reference
|
|
||||||
(url "https://github.com/apparentlymart/go-openvpn-mgmt")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "1dn431jnswg5ns1ah10wswnw6wiv48zq21zr5xp1178l4waswj7k"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:skip-build? #t
|
|
||||||
#:import-path "github.com/apparentlymart/go-openvpn-mgmt"))
|
|
||||||
(home-page "https://github.com/apparentlymart/go-openvpn-mgmt")
|
|
||||||
(synopsis "Go client library for OpenVPN's management protocol")
|
|
||||||
(description "Go-OpenVPN-Mgmt implements a client for the OpenVPN
|
|
||||||
management interface. It can be used to monitor and control an OpenVPN process
|
|
||||||
running with its management port enabled.")
|
|
||||||
(license license:expat))))
|
|
||||||
|
|
||||||
(define-public go-github-com-aarzilli-golua
|
(define-public go-github-com-aarzilli-golua
|
||||||
(let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
|
(let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -74,6 +74,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-xyz)
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages libevent)
|
#:use-module (gnu packages libevent)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue