summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Bernat <vincent@bernat.ch>2021-12-02 06:45:46 +0100
committerVincent Bernat <vincent@bernat.ch>2021-12-02 06:47:04 +0100
commit41304a957cf8bf38c3f0ecfc356b1abfd1448e85 (patch)
tree67263204dd4fd7765c1e35e99dadc83f5cab2286
parent70b7a52406e9594101fca81fe1a331e90cda161c (diff)
downloadnixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar.gz
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar.bz2
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar.lz
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar.xz
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.tar.zst
nixpkgs-41304a957cf8bf38c3f0ecfc356b1abfd1448e85.zip
lldpd: 1.0.11 -> 1.0.13
Also update the homepage.
-rw-r--r--pkgs/tools/networking/lldpd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/lldpd/default.nix b/pkgs/tools/networking/lldpd/default.nix
index a4e5d565756..29ca9961546 100644
--- a/pkgs/tools/networking/lldpd/default.nix
+++ b/pkgs/tools/networking/lldpd/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   pname = "lldpd";
-  version = "1.0.11";
+  version = "1.0.13";
 
   src = fetchurl {
     url = "https://media.luffy.cx/files/lldpd/${pname}-${version}.tar.gz";
-    sha256 = "sha256-tR0VcA+678t/uFw1BrSdMxc6DxXXAPkz7wRAZ7QtRuQ=";
+    sha256 = "sha256-1jmCf9iidyDRv9lLxS7KJK9j3cw8nS2mB4h3iInYRwE=";
   };
 
   configureFlags = [
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
-    homepage = "https://vincentbernat.github.io/lldpd/";
+    homepage = "https://lldpd.github.io/";
     license = licenses.isc;
     maintainers = with maintainers; [ fpletz ];
     platforms = platforms.linux;