Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

fastnetmon-advanced: 2.0.337 -> 2.0.342

(cherry picked from commit 3f2c39a06f16f88776755ff77fb2865c9d718f99)

Yureka c6a74ebc 0663d04c

+7 -4
+7 -4
pkgs/servers/fastnetmon-advanced/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fastnetmon-advanced"; 5 - version = "2.0.337"; 5 + version = "2.0.342"; 6 6 7 7 src = fetchurl { 8 8 url = "https://repo.fastnetmon.com/fastnetmon_ubuntu_jammy/pool/fastnetmon/f/fastnetmon/fastnetmon_${version}_amd64.deb"; 9 - hash = "sha256-lYXJ0Q0iUiWk/n/I71BsKnnoRJh3a2EJT3EWV4+pQbM="; 9 + hash = "sha256-H4e7ftuL39xxDYs2zVhgVI8voDBR2TQLWlWSBg3At2s="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ ··· 40 40 cp -r opt/fastnetmon/app/bin $out/bin 41 41 cp -r opt/fastnetmon/libraries $out/libexec/fastnetmon 42 42 43 - ln -s $out/libexec/fastnetmon/libraries/gobgp_2_27_0/gobgpd $out/bin/fnm-gobgpd 44 - ln -s $out/libexec/fastnetmon/libraries/gobgp_2_27_0/gobgp $out/bin/fnm-gobgp 43 + readlink usr/sbin/gobgpd 44 + readlink usr/bin/gobgp 45 + 46 + ln -s $(readlink usr/sbin/gobgpd | sed "s:/opt/fastnetmon:$out/libexec/fastnetmon:") $out/bin/fnm-gobgpd 47 + ln -s $(readlink usr/bin/gobgp | sed "s:/opt/fastnetmon:$out/libexec/fastnetmon:") $out/bin/fnm-gobgp 45 48 46 49 addAutoPatchelfSearchPath $out/libexec/fastnetmon/libraries 47 50 '';