about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/lldpd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/networking/lldpd/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/networking/lldpd/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/networking/lldpd/default.nix b/nixpkgs/pkgs/tools/networking/lldpd/default.nix
new file mode 100644
index 000000000000..8462d907a1f6
--- /dev/null
+++ b/nixpkgs/pkgs/tools/networking/lldpd/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
+, libevent, readline, net-snmp, openssl
+}:
+
+stdenv.mkDerivation rec {
+  pname = "lldpd";
+  version = "1.0.5";
+
+  src = fetchurl {
+    url = "https://media.luffy.cx/files/lldpd/${pname}-${version}.tar.gz";
+    sha256 = "16fbqrs3l976gdslx647nds8x7sz4h5h3h4l4yxzrayvyh9b5lrd";
+  };
+
+  configureFlags = [
+    "--localstatedir=/var"
+    "--enable-pie"
+    "--with-snmp"
+    "--with-systemdsystemunitdir=\${out}/lib/systemd/system"
+  ];
+
+  nativeBuildInputs = [ pkgconfig removeReferencesTo ];
+  buildInputs = [ libevent readline net-snmp openssl ];
+
+  enableParallelBuilding = true;
+
+  outputs = [ "out" "dev" "man" "doc" ];
+
+  preFixup = ''
+    find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
+  '';
+
+  meta = with lib; {
+    description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
+    homepage = "https://vincentbernat.github.io/lldpd/";
+    license = licenses.isc;
+    maintainers = with maintainers; [ fpletz ];
+    platforms = platforms.linux;
+  };
+}