diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-03-29 21:59:34 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-03-29 21:59:48 +0300 |
commit | 63a7ef518dff996a10d33a2cb06303416b4c0a59 (patch) | |
tree | 8df99253516c48b9da022f0154ebd367eef94161 | |
parent | 541b94f9241aa905baf3a650dc0efe648d007e5a (diff) | |
download | guix-63a7ef518dff996a10d33a2cb06303416b4c0a59.tar.gz guix-63a7ef518dff996a10d33a2cb06303416b4c0a59.zip |
gnu: lldpd: Update to 1.0.19.
* gnu/packages/networking.scm (lldpd): Update to 1.0.19.
[home-page]: Set to "https://lldpd.github.io/" as the old home page now
redirects to this URI.
Change-Id: I6f1de6f04bbf998522bae047a606c660333b499f
-rw-r--r-- | gnu/packages/networking.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index ef374e8133..d46400110b 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4542,14 +4542,14 @@ cables.") (define-public lldpd (package (name "lldpd") - (version "1.0.17") + (version "1.0.19") (source (origin (method url-fetch) (uri (string-append "https://media.luffy.cx/files/lldpd/lldpd-" version ".tar.gz")) (sha256 - (base32 "1ki7c7ffys42s2wy5c94qriicgwx0wl9bm83xxkclasx2izifhwk")) + (base32 "0zwr1brzq41r6ji1gnqgnlg5sy0980w5n18xj3d3hlay7lbg6zgq")) (modules '((guix build utils))) (snippet '(begin @@ -4571,7 +4571,7 @@ cables.") (list libevent libxml2 openssl readline)) (native-inputs (list pkg-config)) - (home-page "https://vincentbernat.github.io/lldpd/") + (home-page "https://lldpd.github.io/") (synopsis "Locate neighbors of your network equipment") (description "The @dfn{Link Layer Discovery Protocol} (LLDP) is an industry standard |