nixpkgs-suyu/pkgs/tools/networking/lldpd/default.nix

49 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, removeReferencesTo
2017-05-20 22:45:48 +02:00
, libevent, readline, net_snmp }:
stdenv.mkDerivation rec {
name = "lldpd-${version}";
version = "1.0.1";
2017-05-20 22:45:48 +02:00
src = fetchurl {
url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz";
sha256 = "0lgiappbjm95r1m0xyxb6gzz4izcjixknbzq3s7pbqbsmhm642s5";
2017-05-20 22:45:48 +02:00
};
patches = [
# Fixes #44507: The service fails to start due to a /bin/mkdir call.
# Should be included in the upstream release after 1.0.1.
# Please remove this patch when updating and ensure the NixOS service starts.
(fetchpatch {
url = "https://github.com/vincentbernat/lldpd/commit/90a50860ebdcdeb5b7dc85790b18bed23c97ec32.patch";
sha256 = "005i4ldc4mfzfmvbnid6849ax2i93mx8nkyf8vjv8k73bfpdza8z";
})
];
2017-05-20 22:45:48 +02:00
configureFlags = [
"--localstatedir=/var"
"--enable-pie"
"--with-snmp"
"--with-systemdsystemunitdir=\${out}/lib/systemd/system"
2017-05-20 22:45:48 +02:00
];
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
2017-05-20 22:45:48 +02:00
buildInputs = [ libevent readline net_snmp ];
enableParallelBuilding = true;
outputs = [ "out" "dev" "man" "doc" ];
preFixup = ''
find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
'';
2017-05-20 22:45:48 +02:00
meta = with lib; {
description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
homepage = https://vincentbernat.github.io/lldpd/;
2017-05-20 22:45:48 +02:00
license = licenses.isc;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}