mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
a8d3aa58dc
This reverts commit 7cc74d6dc5
.
See discussion in https://github.com/NixOS/nixpkgs/pull/35622
cc @vcunat @Mic92 @fpletz
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, udev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
# when updating this to >=7, check, see previous reverts:
|
|
# nix-build -A nixos.tests.networking.scripted.macvlan.x86_64-linux nixos/release-combined.nix
|
|
name = "dhcpcd-6.11.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://roy/dhcpcd/${name}.tar.xz";
|
|
sha256 = "17nnhxmbdcc7k2mh6sgvxisqcqbic5540xbig363ds97gvf795kg";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ udev ];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
];
|
|
|
|
makeFlags = "PREFIX=\${out}";
|
|
|
|
# Hack to make installation succeed. dhcpcd will still use /var/db
|
|
# at runtime.
|
|
installFlags = "DBDIR=\${TMPDIR}/db SYSCONFDIR=$(out)/etc";
|
|
|
|
# Check that the udev plugin got built.
|
|
postInstall = stdenv.lib.optional (udev != null) "[ -e $out/lib/dhcpcd/dev/udev.so ]";
|
|
|
|
meta = {
|
|
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
|
|
homepage = https://roy.marples.name/projects/dhcpcd;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ eelco fpletz ];
|
|
};
|
|
}
|