mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add go-github-com-mikioh-tcpopt.
* gnu/packages/golang-web.scm (go-github-com-mikioh-tcpopt): New variable. Change-Id: Icf1d08566d2149c80ffca22a84bf819751b5656f
This commit is contained in:
parent
bb22037ade
commit
319178c16e
1 changed files with 31 additions and 0 deletions
|
@ -3151,6 +3151,37 @@ (define-public go-github-com-miekg-dns
|
||||||
presenting a small interface.")
|
presenting a small interface.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-mikioh-tcpopt
|
||||||
|
(package
|
||||||
|
(name "go-github-com-mikioh-tcpopt")
|
||||||
|
(version "0.0.0-20190314235656-172688c1accc")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mikioh/tcpopt")
|
||||||
|
(commit (go-version->git-ref version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1qdr0vmriy0wf6zg7hpq75g3b4nvp2p4gsc6xqvqg298v42zbrqj"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/mikioh/tcpopt"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; It inroduce cycle with go-github-com-mikioh-tcp.
|
||||||
|
(add-after 'unpack 'remove-examples
|
||||||
|
(lambda* (#:key import-path #:allow-other-keys)
|
||||||
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
|
(delete-file "example_test.go")))))))
|
||||||
|
(home-page "https://github.com/mikioh/tcpopt")
|
||||||
|
(synopsis "Encoding and decoding of TCP-level socket options in Golang")
|
||||||
|
(description
|
||||||
|
"This package implements an encoding and decoding of TCP-level socket
|
||||||
|
options.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-multiaddr
|
(define-public go-github-com-multiformats-go-multiaddr
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-multiformats-go-multiaddr")
|
(name "go-github-com-multiformats-go-multiaddr")
|
||||||
|
|
Loading…
Reference in a new issue