2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, udev, runtimeShellPackage,
|
2020-01-01 20:24:41 +00:00
|
|
|
runtimeShell }:
|
2009-07-17 11:41:19 +00: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 00:55:25 +00:00
|
|
|
pname = "dhcpcd";
|
2019-12-23 06:32:49 +00:00
|
|
|
version = "8.1.4";
|
2009-07-17 11:41:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-25 00:55:25 +00:00
|
|
|
url = "mirror://roy/${pname}/${pname}-${version}.tar.xz";
|
2019-12-23 06:32:49 +00:00
|
|
|
sha256 = "0gf1qif25wy5lffzw39pi4sshmpxz1f4a1m9sglj7am1gaix3817";
|
2009-07-17 11:41:19 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-09-05 17:57:25 +00: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 {
|
2021-04-02 00:58:33 +00:00
|
|
|
name = "?id=114870290a8d3d696bc4049c32eef3eed03d6070";
|
|
|
|
url = "https://roy.marples.name/git/dhcpcd/commitdiff_plain/114870290a8d3d696bc4049c32eef3eed03d6070";
|
2020-01-01 20:24:41 +00:00
|
|
|
sha256 = "0kzpwjh2gzvl5lvlnw6lis610p67nassk3apns68ga2pyxlky8qb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-03-30 15:59:34 +00: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 00:55:25 +00:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2009-07-17 11:41:19 +00:00
|
|
|
|
|
|
|
# Hack to make installation succeed. dhcpcd will still use /var/db
|
|
|
|
# at runtime.
|
2019-07-25 00:55:25 +00:00
|
|
|
installFlags = [ "DBDIR=$(TMPDIR)/db" "SYSCONFDIR=${placeholder "out"}/etc" ];
|
2009-07-17 11:41:19 +00:00
|
|
|
|
2014-02-02 10:27:41 +00:00
|
|
|
# Check that the udev plugin got built.
|
2021-08-18 00:14:20 +00:00
|
|
|
postInstall = lib.optionalString (udev != null) "[ -e ${placeholder "out"}/lib/dhcpcd/dev/udev.so ]";
|
2014-02-02 10:27:41 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2009-07-17 11:41:19 +00:00
|
|
|
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://roy.marples.name/projects/dhcpcd";
|
2018-09-10 19:15:57 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ eelco fpletz ];
|
2009-07-17 11:41:19 +00:00
|
|
|
};
|
|
|
|
}
|