Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
libnl,
|
|
popt,
|
|
gnugrep,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipvsadm";
|
|
version = "1.31";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/utils/kernel/ipvsadm/${pname}-${version}.tar.xz";
|
|
sha256 = "1nyzpv1hx75k9lh0vfxfhc0p2fpqaqb38xpvs8sn88m1nljmw2hs";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace "-lnl" "$(pkg-config --libs libnl-genl-3.0)"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libnl
|
|
popt
|
|
];
|
|
|
|
# Disable parallel build, errors:
|
|
# *** No rule to make target 'libipvs/libipvs.a', needed by 'ipvsadm'. Stop.
|
|
enableParallelBuilding = false;
|
|
|
|
preBuild = ''
|
|
makeFlagsArray+=(
|
|
INCLUDE=$(pkg-config --cflags libnl-genl-3.0)
|
|
BUILD_ROOT=$out
|
|
MANDIR=share/man
|
|
)
|
|
'';
|
|
|
|
postInstall = ''
|
|
sed -i -e "s|^PATH=.*|PATH=$out/bin:${gnugrep}/bin|" $out/sbin/ipvsadm-{restore,save}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Linux Virtual Server support programs";
|
|
homepage = "http://www.linuxvirtualserver.org/software/ipvs.html";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|