unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Edouard Klein <edk@beaver-labs.com>
To: 65974@debbugs.gnu.org
Cc: Edouard Klein <edk@beaver-labs.com>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>
Subject: [bug#65974] [PATCH 24/33] gnu: Add go-github-com-jsimonetti-rtnetlink.
Date: Thu, 14 Sep 2023 10:03:09 +0200	[thread overview]
Message-ID: <cd5ddacf16be55ae3a8e1507c7b0f0e583ec8218.1694678168.git.edk@beaver-labs.com> (raw)
In-Reply-To: <cover.1694678167.git.edk@beaver-labs.com>

* gnu/packages/golang.scm (go-github-com-jsimonetti-rtnetlink): New variable.
---
 gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3bf113fd70..bb19e9605f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -13668,6 +13668,41 @@ (define-public go-github-com-mdlayher-netlink
      "Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).")
     (license license:expat)))
 
+(define-public go-github-com-jsimonetti-rtnetlink
+  (package
+    (name "go-github-com-jsimonetti-rtnetlink")
+    (version "1.3.5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jsimonetti/rtnetlink")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "19kifm0c4lpq1y25g2acnfm5cfrizbygqa50a3sdp9368s1gaay5"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/jsimonetti/rtnetlink"
+       #:go ,go-1.20))
+    (propagated-inputs `(("go-golang-org-x-sync" ,go-golang-org-x-sync)
+                         ("go-golang-org-x-net" ,go-golang-org-x-net)
+                         ("go-golang-org-x-exp" ,go-golang-org-x-exp)
+                         ("go-github-com-mdlayher-socket" ,go-github-com-mdlayher-socket)
+                         ("go-github-com-josharian-native" ,go-github-com-josharian-native)
+                         ("go-golang-org-x-sys" ,go-golang-org-x-sys)
+                         ("go-github-com-mdlayher-netlink" ,go-github-com-mdlayher-netlink)
+                         ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+                         ("go-github-com-cilium-ebpf" ,go-github-com-cilium-ebpf)))
+    (home-page "https://github.com/jsimonetti/rtnetlink")
+    (synopsis "rtnetlink")
+    (description
+     "Package rtnetlink allows the kernel's routing tables to be read and altered.
+Network routes, IP addresses, Link parameters, Neighbor setups, Queueing
+disciplines, Traffic classes and Packet classifiers may all be controlled.  It
+is based on netlink messages.")
+    (license license:expat)))
+
 (define-public go-github-com-vishvananda-netlink
   (package
     (name "go-github-com-vishvananda-netlink")
-- 
2.40.1






  parent reply	other threads:[~2023-09-14  8:06 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-14  7:57 [bug#65974] [PATCH 00/33] thirty something go packages Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 01/33] gnu: Add go-github-com-sourcegraph-go-lsp Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 02/33] doc: golang: Minor grammar fix on comment Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 03/33] gnu: Add go-src-elv-sh Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 04/33] gnu: Add go-github-com-vishvananda-netns Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 05/33] gnu: Add go-github-com-vishvananda-netlink Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 06/33] gnu: Add go-github-com-hashicorp-errwrap Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 07/33] gnu: Add go-github-com-hashicorp-go-multierror Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 08/33] gnu: Add go-github-com-josharian-native Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 09/33] gnu: Add go-github-com-pierrec-lz4-v4 Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 10/33] gnu: Add go-github-com-u-root-uio Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 11/33] gnu: Fix go-github-com-u-root-uio Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 12/33] gnu: Add go-github-com-u-root-uio-ulog Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 13/33] gnu: Add go-github-com-u-root-uio-cp Edouard Klein
2023-09-14  8:02 ` [bug#65974] [PATCH 14/33] gnu: Add go-github-com-u-root-gobusybox-src-pkg-bb Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 15/33] gnu: Add go-github-com-mdlayher-socket Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 16/33] gnu: Add go-github-com-mdlayher-packet Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 17/33] gnu: Add go-github-com-klauspost-pgzip Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 18/33] gnu: Add go-github-com-fanliao-go-promise Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 19/33] gnu: Add go-github-com-hugelgupf-socketpair Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 20/33] gnu: go-golang-org-x-sys: Update to 0.12.0 Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 21/33] gnu: go-github-com-frankban-quicktest: Update to 1.14.6 Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 22/33] gnu: Add go-github-com-cilium-ebpf Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 23/33] gnu: Add go-github-com-mdlayher-netlink Edouard Klein
2023-09-14  8:03 ` Edouard Klein [this message]
2023-09-14  8:03 ` [bug#65974] [PATCH 25/33] gnu: Add go-github-com-neelance-astrewrite Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 26/33] gnu: Add go-github-com-neelance-sourcemap Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 27/33] gnu: Add go-github-com-shurcool-go-importgraphutil Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 28/33] gnu: Add go-github-com-inconshreveable-mousetrap Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 29/33] gnu: Add go-github-com-u-root-uio-rand Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 30/33] gnu: Add go-github-com-insomniacslk-dhcp-dhcpv4 Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 31/33] gnu: Add go-github-com-netflix-go-expect Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 32/33] gnu: Add go-cloud-google-com-go-workflows Edouard Klein
2023-09-14  8:03 ` [bug#65974] [PATCH 33/33] gnu: Add go-github-com-hugelgupf-p9-cmd-p9ufs Edouard Klein
2023-10-10  1:34 ` [bug#65974] Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cd5ddacf16be55ae3a8e1507c7b0f0e583ec8218.1694678168.git.edk@beaver-labs.com \
    --to=edk@beaver-labs.com \
    --cc=65974@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).