diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-31 10:57:06 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-31 11:58:56 +0100 |
| commit | 03166f48e43d20723b4cb5ba2920b736ecf6eb6c (patch) | |
| tree | 01f81e4e74b95a52930f4e02fd20f22e416eee37 /gnu/packages | |
| parent | afcee8b701117e8d6fc28d3dee9734ab8d6f7fbb (diff) | |
gnu: Add go-github-com-cevatbarisyilmaz-ara.
* gnu/packages/golang-web.scm (go-github-com-cevatbarisyilmaz-ara): New variable.
Change-Id: I64a52f832efb4048d3591e48541ef885595cceaa
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/golang-web.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 1acee4e6816..6d217e88eb6 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -3404,6 +3404,41 @@ pattern.") @code{net/rpc}.") (license license:expat))) +(define-public go-github-com-cevatbarisyilmaz-ara + (package + (name "go-github-com-cevatbarisyilmaz-ara") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cevatbarisyilmaz/ara") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0512nlqqv9bnsplphiw7q9s80icl63wgl88b7m6m4vsvn5ghphc8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/cevatbarisyilmaz/ara" + #:test-flags + ;; ialer_test.go:46: lookup google.com on [::1]:53: read udp + ;; [::1]:39632->[::1]:53: read: connection refused + #~(list "-skip" "TestDialer|TestNewCustomResolver") + #:phases + #~(modify-phases %standard-phases + (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/cevatbarisyilmaz/ara") + (synopsis "Dialer with customizable resolver") + (description + "Package ara provides a dialer with customizable resolver. It can be +used with @code{http.Client} and @code{http.Transport} to alter host +lookups.") + (license license:expat))) + (define-public go-github-com-chris-ramon-douceur (package (name "go-github-com-chris-ramon-douceur") |
