nixpkgs/pkgs/tools/networking/dhcp/default.nix

91 lines
2.6 KiB
Nix
Raw Normal View History

2021-03-14 16:05:16 +00:00
{ stdenv, fetchurl, perl, file, nettools, iputils, iproute2, makeWrapper
, coreutils, gnused, openldap ? null
2019-03-23 04:44:16 +00:00
, buildPackages, lib
2015-03-26 19:27:48 +00:00
}:
stdenv.mkDerivation rec {
pname = "dhcp";
version = "4.4.2-P1";
src = fetchurl {
url = "https://ftp.isc.org/isc/dhcp/${version}/${pname}-${version}.tar.gz";
sha256 = "06jsr0cg5rsmyibshrpcb9za0qgwvqccashdma7mlm1rflrh8pmh";
};
patches =
2018-01-08 16:33:59 +00:00
[
# Make sure that the hostname gets set on reboot. Without this
# patch, the hostname doesn't get set properly if the old
# hostname (i.e. before reboot) is equal to the new hostname.
./set-hostname.patch
];
nativeBuildInputs = [ perl makeWrapper ];
2019-03-23 04:44:16 +00:00
buildInputs = [ openldap ];
2019-03-23 04:44:16 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
2015-03-26 19:27:48 +00:00
configureFlags = [
"--enable-failover"
"--enable-execute"
"--enable-tracing"
"--enable-delayed-ack"
"--enable-dhcpv6"
"--enable-paranoia"
"--enable-early-chroot"
"--sysconfdir=/etc"
"--localstatedir=/var"
] ++ lib.optional stdenv.isLinux "--with-randomdev=/dev/random"
2021-01-15 09:19:50 +00:00
++ lib.optionals (openldap != null) [ "--with-ldap" "--with-ldapcrypto" ];
2015-03-26 19:27:48 +00:00
2019-10-30 00:12:09 +00:00
NIX_CFLAGS_COMPILE = builtins.toString [
2018-05-16 21:36:32 +00:00
"-Wno-error=pointer-compare"
"-Wno-error=format-truncation"
2019-11-02 22:41:50 +00:00
"-Wno-error=stringop-truncation"
"-Wno-error=format-overflow"
2020-06-08 12:21:49 +00:00
"-Wno-error=stringop-overflow=8"
2018-05-16 21:36:32 +00:00
];
2015-03-26 19:27:48 +00:00
installFlags = [ "DESTDIR=\${out}" ];
postInstall =
''
2015-03-26 19:27:48 +00:00
mv $out/$out/* $out
DIR=$out/$out
while rmdir $DIR 2>/dev/null; do
DIR="$(dirname "$DIR")"
done
cp client/scripts/linux $out/sbin/dhclient-script
substituteInPlace $out/sbin/dhclient-script \
2021-03-14 16:05:16 +00:00
--replace /sbin/ip ${iproute2}/sbin/ip
wrapProgram "$out/sbin/dhclient-script" --prefix PATH : \
"${nettools}/bin:${nettools}/sbin:${iputils}/bin:${coreutils}/bin:${gnused}/bin"
'';
preConfigure =
''
substituteInPlace configure --replace "/usr/bin/file" "${file}/bin/file"
sed -i "includes/dhcpd.h" \
-e "s|^ *#define \+_PATH_DHCLIENT_SCRIPT.*$|#define _PATH_DHCLIENT_SCRIPT \"$out/sbin/dhclient-script\"|g"
2019-03-23 04:44:16 +00:00
export AR='${stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar'
'';
meta = with lib; {
description = "Dynamic Host Configuration Protocol (DHCP) tools";
longDescription = ''
ISC's Dynamic Host Configuration Protocol (DHCP) distribution
provides a freely redistributable reference implementation of
all aspects of DHCP, through a suite of DHCP tools: server,
client, and relay agent.
'';
2020-01-10 00:34:25 +00:00
homepage = "https://www.isc.org/dhcp/";
license = licenses.isc;
platforms = platforms.unix;
};
}