2020-01-01 20:24:41 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, udev, runtimeShellPackage,
|
|
|
|
runtimeShell }:
|
2009-07-17 12:41:19 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-02 12:20:56 +00:00
|
|
|
# when updating this to >=7, check, see previous reverts:
|
|
|
|
# nix-build -A nixos.tests.networking.scripted.macvlan.x86_64-linux nixos/release-combined.nix
|
2019-07-25 01:55:25 +01:00
|
|
|
pname = "dhcpcd";
|
2019-12-23 06:32:49 +00:00
|
|
|
version = "8.1.4";
|
2009-07-17 12:41:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-25 01:55:25 +01:00
|
|
|
url = "mirror://roy/${pname}/${pname}-${version}.tar.xz";
|
2019-12-23 06:32:49 +00:00
|
|
|
sha256 = "0gf1qif25wy5lffzw39pi4sshmpxz1f4a1m9sglj7am1gaix3817";
|
2009-07-17 12:41:19 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-09-05 18:57:25 +01:00
|
|
|
buildInputs = [
|
|
|
|
udev
|
|
|
|
runtimeShellPackage # So patchShebangs finds a bash suitable for the installed scripts
|
|
|
|
];
|
2014-02-02 10:27:41 +00:00
|
|
|
|
2018-11-23 03:57:01 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace hooks/dhcpcd-run-hooks.in --replace /bin/sh ${runtimeShell}
|
|
|
|
'';
|
|
|
|
|
2020-01-01 20:24:41 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://roy.marples.name/cgit/dhcpcd.git/patch/?id=114870290a8d3d696bc4049c32eef3eed03d6070";
|
|
|
|
sha256 = "0kzpwjh2gzvl5lvlnw6lis610p67nassk3apns68ga2pyxlky8qb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-03-30 16:59:34 +01:00
|
|
|
preConfigure = "patchShebangs ./configure";
|
|
|
|
|
2015-03-26 18:36:47 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
2012-02-20 15:12:34 +00:00
|
|
|
|
2019-07-25 01:55:25 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2009-07-17 12:41:19 +01:00
|
|
|
|
|
|
|
# Hack to make installation succeed. dhcpcd will still use /var/db
|
|
|
|
# at runtime.
|
2019-07-25 01:55:25 +01:00
|
|
|
installFlags = [ "DBDIR=$(TMPDIR)/db" "SYSCONFDIR=${placeholder "out"}/etc" ];
|
2009-07-17 12:41:19 +01:00
|
|
|
|
2014-02-02 10:27:41 +00:00
|
|
|
# Check that the udev plugin got built.
|
2019-07-25 01:55:25 +01:00
|
|
|
postInstall = stdenv.lib.optional (udev != null) "[ -e ${placeholder "out"}/lib/dhcpcd/dev/udev.so ]";
|
2014-02-02 10:27:41 +00:00
|
|
|
|
2018-09-10 20:15:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-07-17 12:41:19 +01:00
|
|
|
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://roy.marples.name/projects/dhcpcd";
|
2018-09-10 20:15:57 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ eelco fpletz ];
|
2009-07-17 12:41:19 +01:00
|
|
|
};
|
|
|
|
}
|