[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48729] [PATCH v8 10/25] gnu: Add go-github-com-operatorfoundation-s
From: |
Raghav Gururajan |
Subject: |
[bug#48729] [PATCH v8 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc. |
Date: |
Sat, 3 Jul 2021 02:05:08 -0400 |
* gnu/packages/golang.scm (go-github-com-operatorfoundation-shapeshifter-ipc):
New variable.
---
gnu/packages/golang.scm | 53 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 58312194dd..e5c097dd2b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -73,6 +73,59 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
+(define-public go-github-com-operatorfoundation-shapeshifter-ipc
+ (package
+ (name "go-github-com-operatorfoundation-shapeshifter-ipc")
+ (version "2.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/OperatorFoundation/shapeshifter-ipc")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1q1fcnllg462nfca16s5mr0n2jh92x3hj946qnaqc682phjz04lg"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:tests? #f ; ERROR: undefined: Args.
+ #:unpack-path "github.com/OperatorFoundation/shapeshifter-ipc"
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda arguments
+ (for-each
+ (lambda (directory)
+ (apply (assoc-ref %standard-phases 'build)
+ `(,@arguments #:import-path ,directory)))
+ (list
+ "github.com/OperatorFoundation/shapeshifter-ipc/v2"
+ "github.com/OperatorFoundation/shapeshifter-ipc/v3"))))
+ (replace 'check
+ (lambda arguments
+ (for-each
+ (lambda (directory)
+ (apply (assoc-ref %standard-phases 'check)
+ `(,@arguments #:import-path ,directory)))
+ (list
+ "github.com/OperatorFoundation/shapeshifter-ipc/v2"
+ "github.com/OperatorFoundation/shapeshifter-ipc/v3"))))
+ (replace 'install
+ (lambda arguments
+ (for-each
+ (lambda (directory)
+ (apply (assoc-ref %standard-phases 'install)
+ `(,@arguments #:import-path ,directory)))
+ (list
+ "github.com/OperatorFoundation/shapeshifter-ipc/v2"
+ "github.com/OperatorFoundation/shapeshifter-ipc/v3")))))))
+ (home-page "https://github.com/OperatorFoundation/shapeshifter-ipc")
+ (synopsis "Go implementation of the Pluggable Transports IPC protocol")
+ (description "Shapeshifter-IPC is a library for Go implementing the IPC
+protocol from the Pluggable Transports 2.0 specification.")
+ (license license:expat)))
+
(define-public go-github-com-operatorfoundation-obfs4
(package
(name "go-github-com-operatorfoundation-obfs4")
--
2.32.0
- [bug#48729] [PATCH v8 01/25] gnu: Add go-github-com-rakyll-statik., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 03/25] gnu: Add go-github-com-emersion-go-autostart., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 04/25] gnu: Add go-github-com-apparentlymart-go-openvpn-mgmt., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 02/25] gnu: Add go-github-com-dchest-siphash., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 05/25] gnu: Add go-github-com-keybase-go-ps., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 06/25] gnu: Add go-github-com-sevlyar-go-daemon., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 07/25] gnu: Add go-torproject-org-pluggable-transports-goptlib., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 08/25] gnu: Add go-github-com-willscott-goturn., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 09/25] gnu: Add go-github-com-operatorfoundation-obfs4., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 10/25] gnu: Add go-github-com-operatorfoundation-shapeshifter-ipc.,
Raghav Gururajan <=
- [bug#48729] [PATCH v8 12/25] gnu: Add go-github-com-blanu-dust., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 13/25] gnu: Add go-github-com-deckarep-golang-set., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 16/25] gnu: Add go-github-com-mufti1-interconv., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 23/25] gnu: Add go-0xacab-org-leap-shapeshifter., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 24/25] gnu: Add bitmask., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 14/25] gnu: Add go-github-com-operatorfoundation-monolith-go., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 18/25] gnu: Add go-github-com-riobard-go-bloom., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 19/25] gnu: Add go-github-com-shadowsocks-go-shadowsocks2., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 21/25] gnu: Add go-github-com-kataras-golog., Raghav Gururajan, 2021/07/03
- [bug#48729] [PATCH v8 15/25] gnu: Add go-github-com-opentracing-opentracing-go., Raghav Gururajan, 2021/07/03