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

[Backport release-25.05] lldpd: fix cross compilation (#449354)

authored by Franz Pletz and committed by GitHub d9d3a14b f29fe55e

Changed files
+6 -1
pkgs
by-name
ll
lldpd
ne
net-snmp
+5
pkgs/by-name/ll/lldpd/package.nix
··· 43 43 openssl 44 44 ]; 45 45 46 + preConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) '' 47 + # Yes, this works and is required for cross :'/ 48 + export PATH=$PATH:${net-snmp.dev}/bin 49 + ''; 50 + 46 51 enableParallelBuilding = true; 47 52 48 53 outputs = [
+1 -1
pkgs/by-name/ne/net-snmp/package.nix
··· 102 102 103 103 meta = with lib; { 104 104 description = "Clients and server for the SNMP network monitoring protocol"; 105 - homepage = "http://www.net-snmp.org/"; 105 + homepage = "https://www.net-snmp.org/"; 106 106 license = licenses.bsd3; 107 107 platforms = platforms.unix; 108 108 };