1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +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:
Sharlatan Hellseher 2025-02-20 16:06:56 +00:00
parent b94d216afb
commit f37c215d24
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
3 changed files with 32 additions and 31 deletions

View file

@ -330,6 +330,37 @@ Go 1.20 @code{crypto/ecdh} standard package.")
cryptographic standards that are not included in the Go standard library.")
(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
(package
(name "go-github-com-bradenhilton-cityhash")