This is an automated email from the git hooks/post-receive script.

andreas pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 773014994f gnu: Add openrdap.
773014994f is described below

commit 773014994fa486727df9c335c778ec678c691075
Author: B. Wilson <[email protected]>
AuthorDate: Sat Mar 22 14:11:45 2025 +0900

    gnu: Add openrdap.
    
    * gnu/packages/networking.scm (openrdap): New variable.
    
    Change-Id: If8d113b1bff6e83c8b02b043faa361bdac630588
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/networking.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index d46400110b..caff01e1b9 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -66,6 +66,7 @@
 ;;; Copyright © 2024 Alexey Abramov <[email protected]>
 ;;; Copyright © 2024 James Smith <[email protected]>
 ;;; Copyright © 2025 Sughosha <[email protected]>
+;;; Copyright © 2025 B. Wilson <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5123,3 +5124,34 @@ back to the servers which know the data.")
 recording packets that are dropped by the kernel.  It provides the commands
 @command{dropwatch} and @command{dwdump}.")
     (license license:gpl2+)))
+
+(define-public openrdap
+  (package
+    (name "openrdap")
+    (version "0.9.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/openrdap/rdap";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1w3kwxh3hvkp5x1m6i4ijydmpfpibgf9jkviqrvpcadh335989hn"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:unpack-path "github.com/openrdap/rdap"
+      #:import-path "github.com/openrdap/rdap/cmd/rdap"))
+    (propagated-inputs (list go-golang-org-x-crypto
+                             go-github-com-mitchellh-go-homedir
+                             go-github-com-jarcoal-httpmock
+                             go-github-com-davecgh-go-spew
+                             go-github-com-alecthomas-kingpin-v2))
+    (home-page "https://www.openrdap.org/";)
+    (synopsis "Command line RDAP client")
+    (description
+     "OpenRDAP is a command line client for the Registration Data Access
+Protocol.  RDAP is modern a replacement for WHOIS, which provides domain name
+and IP address registration information in JSON format over HTTP.")
+    (license license:expat)))

Reply via email to