5aa986fba2
Fixes CVE-2016-1503 & CVE-2016-1504. Changelog: - http://roy.marples.name/archives/dhcpcd-discuss/2016/1143.html - http://roy.marples.name/archives/dhcpcd-discuss/2016/1146.html
34 lines
928 B
Nix
34 lines
928 B
Nix
{ stdenv, fetchurl, pkgconfig, udev }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dhcpcd-6.10.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://roy/dhcpcd/${name}.tar.xz";
|
|
sha256 = "0yxfx3r6ik47rsv1f8q7siw0vas6jcsrbjpaqnx0nn707f6byji8";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig 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 = http://roy.marples.name/projects/dhcpcd;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ eelco fpletz ];
|
|
};
|
|
}
|