2022-05-12 21:46:48 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, libpcap }:
|
2021-07-21 14:23:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cdpr";
|
|
|
|
version = "2.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pname}/${pname}/${version}/${pname}-${version}.tgz";
|
|
|
|
sha256 = "1idyvyafkk0ifcbi7mc65b60qia6hpsdb6s66j4ggqp7if6vblrj";
|
|
|
|
};
|
2022-05-12 21:46:48 +01:00
|
|
|
patches = [
|
|
|
|
# Pull fix pending upstream inclusion for gcc-10 compatibility:
|
|
|
|
# https://sourceforge.net/p/cdpr/bugs/3/
|
|
|
|
(fetchurl {
|
|
|
|
name = "fno-common";
|
|
|
|
url = "https://sourceforge.net/p/cdpr/bugs/3/attachment/0001-cdpr-fix-build-on-gcc-10-fno-common.patch";
|
|
|
|
sha256 = "023cvkpc4ry1pbjd91kkwj4af3hia0layk3fp8q40vh6mbr14pnp";
|
|
|
|
})
|
|
|
|
];
|
2021-07-21 14:23:54 +01:00
|
|
|
|
2021-11-20 23:24:38 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace 'gcc' '"$$CC"'
|
|
|
|
'';
|
|
|
|
|
2021-07-21 14:23:54 +01:00
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 cdpr $out/bin/cdpr
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Cisco Discovery Protocol Reporter";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://cdpr.sourceforge.net/";
|
2021-07-21 14:23:54 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.sgo ];
|
|
|
|
};
|
|
|
|
}
|