nixpkgs/pkgs/servers/monitoring/net-snmp/default.nix
Sergei Trofimovich ca73360bb7 net-snmp: drop build-only references from the closure
Before the change `net-snmp` embedded it's `./configure` options as is
and retained unneeded dependencies:

    $ nix path-info -rSh $(nix-build -A net-snmp.lib) | nl |& unnix
     1  /<<NIX>>/libunistring-1.1          1.8M
     2  /<<NIX>>/xgcc-12.3.0-libgcc      139.1K
     3  /<<NIX>>/libidn2-2.3.4             2.1M
     4  /<<NIX>>/glibc-2.38-23            31.1M
     5  /<<NIX>>/net-snmp-5.9.4            1.7M
     6  /<<NIX>>/bash-5.2-p15             32.6M
     7  /<<NIX>>/openssl-3.0.11           37.3M
     8  /<<NIX>>/openssl-3.0.11-bin       39.8M
     9  /<<NIX>>/openssl-3.0.11-dev       41.7M
    10  /<<NIX>>/net-snmp-5.9.4-lib       46.2M

After the change the closure skips `openssl.dev` input and gets rid of
5MB of closure:

    $ nix path-info -rSh $(nix-build -A net-snmp.lib) | nl |& unnix
     1  /<<NIX>>/libunistring-1.1          1.8M
     2  /<<NIX>>/xgcc-12.3.0-libgcc      139.1K
     3  /<<NIX>>/libidn2-2.3.4             2.1M
     4  /<<NIX>>/glibc-2.38-23            31.1M
     5  /<<NIX>>/net-snmp-5.9.4            1.7M
     6  /<<NIX>>/openssl-3.0.11           37.3M
     7  /<<NIX>>/net-snmp-5.9.4-lib       41.8M
2023-11-02 17:28:43 +00:00

80 lines
2.6 KiB
Nix

{ lib, stdenv, fetchurl, fetchpatch
, file, openssl, perl, perlPackages, nettools
, withPerlTools ? false }: let
perlWithPkgs = perl.withPackages (ps: with ps; [
JSON
TermReadKey
Tk
]);
in stdenv.mkDerivation rec {
pname = "net-snmp";
version = "5.9.4";
src = fetchurl {
url = "mirror://sourceforge/net-snmp/${pname}-${version}.tar.gz";
sha256 = "sha256-i03gE5HnTjxwFL60OWGi1tb6A6zDQoC5WF9JMHRbBUQ=";
};
patches =
let fetchAlpinePatch = name: sha256: fetchurl {
url = "https://git.alpinelinux.org/aports/plain/main/net-snmp/${name}?id=ebb21045c31f4d5993238bcdb654f21d8faf8123";
inherit name sha256;
};
in [
(fetchAlpinePatch "fix-includes.patch" "0zpkbb6k366qpq4dax5wknwprhwnhighcp402mlm7950d39zfa3m")
(fetchAlpinePatch "netsnmp-swinst-crash.patch" "0gh164wy6zfiwiszh58fsvr25k0ns14r3099664qykgpmickkqid")
(fetchAlpinePatch "fix-fd_mask.patch" "/i9ve61HjDzqZt+u1wajNtSQoizl+KePvhcAt24HKd0=")
];
outputs = [ "bin" "out" "dev" "lib" ];
configureFlags =
[ "--with-default-snmp-version=3"
"--with-sys-location=Unknown"
"--with-sys-contact=root@unknown"
"--with-logfile=/var/log/net-snmpd.log"
"--with-persistent-directory=/var/lib/net-snmp"
"--with-openssl=${openssl.dev}"
"--disable-embedded-perl"
"--without-perl-modules"
] ++ lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts";
postPatch = ''
substituteInPlace testing/fulltests/support/simple_TESTCONF.sh --replace "/bin/netstat" "${nettools}/bin/netstat"
'';
postConfigure = ''
# libraries contain configure options. Mangle store paths out from
# ./configure-generated file.
sed -i include/net-snmp/net-snmp-config.h \
-e "/NETSNMP_CONFIGURE_OPTIONS/ s|$NIX_STORE/[a-z0-9]\{32\}-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g"
'';
nativeBuildInputs = [ nettools file ];
buildInputs = [ openssl ]
++ lib.optional withPerlTools perlWithPkgs;
enableParallelBuilding = true;
# Missing dependencies during relinking:
# ./.libs/libnetsnmpagent.so: file not recognized: file format not recognized
enableParallelInstalling = false;
doCheck = false; # tries to use networking
postInstall = ''
for f in "$lib/lib/"*.la $bin/bin/net-snmp-config $bin/bin/net-snmp-create-v3-user; do
sed 's|-L${openssl.dev}|-L${lib.getLib openssl}|g' -i $f
done
mkdir $dev/bin
mv $bin/bin/net-snmp-config $dev/bin
'';
meta = with lib; {
description = "Clients and server for the SNMP network monitoring protocol";
homepage = "http://www.net-snmp.org/";
license = licenses.bsd3;
platforms = platforms.linux;
};
}