From 9f6c85bd5e04c040970b8ae59f7150540cbe00a7 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 18 Dec 2018 00:03:56 +0100 Subject: [PATCH] lldpd: 1.0.1 -> 1.0.3 --- pkgs/tools/networking/lldpd/default.nix | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/pkgs/tools/networking/lldpd/default.nix b/pkgs/tools/networking/lldpd/default.nix index 81456c1b852d..193f44a62e21 100644 --- a/pkgs/tools/networking/lldpd/default.nix +++ b/pkgs/tools/networking/lldpd/default.nix @@ -1,25 +1,15 @@ -{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, removeReferencesTo +{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo , libevent, readline, net_snmp }: stdenv.mkDerivation rec { name = "lldpd-${version}"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { url = "https://media.luffy.cx/files/lldpd/${name}.tar.gz"; - sha256 = "0lgiappbjm95r1m0xyxb6gzz4izcjixknbzq3s7pbqbsmhm642s5"; + sha256 = "0q63wiaan85a6d204jgk87w6dw5c9x0rb2z7pwb580b8a4wyvz1r"; }; - 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"; - }) - ]; - configureFlags = [ "--localstatedir=/var" "--enable-pie"