[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48729] [PATCH v5 04/25] gnu: Add go-github-com-apparentlymart-go-op
From: |
Raghav Gururajan |
Subject: |
[bug#48729] [PATCH v5 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt. |
Date: |
Fri, 18 Jun 2021 02:43:58 -0400 |
* gnu/packages/golang.scm (go-github-com-apparentlymart-go-openvpn-mgmt): New
variable.
---
gnu/packages/golang.scm | 79 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 79 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b4599850b0..3cc3ff520e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -69,6 +69,85 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
+(define-public go-github-com-apparentlymart-go-openvpn-mgmt
+ (let ((commit "4d2ce95ae600ee04eeb020ee0997aabb82752210")
+ (revision "14"))
+ (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
+ `(#:unpack-path "github.com/apparentlymart/go-openvpn-mgmt"
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda* (#:key source system outputs search-paths build-flags
+ unpack-path inputs #:allow-other-keys)
+ (for-each
+ (lambda (directory)
+ ((assoc-ref %standard-phases 'build)
+ #:source source
+ #:system system
+ #:outputs outputs
+ #:search-paths search-paths
+ #:build-flags build-flags
+ #:unpack-path unpack-path
+ #:inputs inputs
+ #:import-path directory))
+ (list
+ "github.com/apparentlymart/go-openvpn-mgmt/demux"
+ "github.com/apparentlymart/go-openvpn-mgmt/openvpn"))))
+ (replace 'check
+ (lambda* (#:key source system outputs search-paths tests?
+ unpack-path inputs #:allow-other-keys)
+ (for-each
+ (lambda (directory)
+ ((assoc-ref %standard-phases 'check)
+ #:source source
+ #:system system
+ #:outputs outputs
+ #:search-paths search-paths
+ #:tests? tests?
+ #:unpack-path unpack-path
+ #:inputs inputs
+ #:import-path directory))
+ (list
+ "github.com/apparentlymart/go-openvpn-mgmt/demux"
+ "github.com/apparentlymart/go-openvpn-mgmt/openvpn"))))
+ (replace 'install
+ (lambda* (#:key source system outputs search-paths install-source?
+ unpack-path inputs #:allow-other-keys)
+ (for-each
+ (lambda (directory)
+ ((assoc-ref %standard-phases 'install)
+ #:source source
+ #:system system
+ #:outputs outputs
+ #:search-paths search-paths
+ #:install-source? install-source?
+ #:unpack-path unpack-path
+ #:inputs inputs
+ #:import-path directory))
+ (list
+ "github.com/apparentlymart/go-openvpn-mgmt/demux"
+ "github.com/apparentlymart/go-openvpn-mgmt/openvpn")))))))
+ (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-emersion-go-autostart
(let ((commit "00ed301c8e9ae79e82878c6361c709983ac5dd2c")
(revision "39"))
--
2.32.0
- [bug#48729] [PATCH v5 01/25] gnu: Add go-github-com-rakyll-statik., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 02/25] gnu: Add go-github-com-dchest-siphash., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt.,
Raghav Gururajan <=
- [bug#48729] [PATCH v5 08/25] gnu: Add go-github-com-willscott-goturn., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 05/25] gnu: Add go-github-com-keybase-go-ps., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 03/25] gnu: Add go-github-com-emersion-go-autostart., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 06/25] gnu: Add go-github-com-sevlyar-go-daemon., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 13/25] gnu: Add go-github-com-deckarep-golang-set., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 09/25] gnu: Add go-github-com-operatorfoundation-obfs4., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 11/25] gnu: Add go-github-com-op-go-logging., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 12/25] gnu: Add go-github-com-blanu-dust., Raghav Gururajan, 2021/06/18
- [bug#48729] [PATCH v5 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc., Raghav Gururajan, 2021/06/18