2014-02-02 11:27:41 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, udev }:
|
2009-07-17 13:41:19 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-12-02 12:51:58 +01:00
|
|
|
name = "dhcpcd-6.11.5";
|
2009-07-17 13:41:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-22 23:33:06 +02:00
|
|
|
url = "mirror://roy/dhcpcd/${name}.tar.xz";
|
2016-12-02 12:51:58 +01:00
|
|
|
sha256 = "17nnhxmbdcc7k2mh6sgvxisqcqbic5540xbig363ds97gvf795kg";
|
2009-07-17 13:41:19 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ udev ];
|
2014-02-02 11:27:41 +01:00
|
|
|
|
2015-03-26 19:36:47 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
2012-02-20 16:12:34 +01:00
|
|
|
|
2009-07-17 13:41:19 +02:00
|
|
|
makeFlags = "PREFIX=\${out}";
|
|
|
|
|
|
|
|
# Hack to make installation succeed. dhcpcd will still use /var/db
|
|
|
|
# at runtime.
|
2012-02-20 16:12:34 +01:00
|
|
|
installFlags = "DBDIR=\${TMPDIR}/db SYSCONFDIR=$(out)/etc";
|
2009-07-17 13:41:19 +02:00
|
|
|
|
2014-02-02 11:27:41 +01:00
|
|
|
# Check that the udev plugin got built.
|
2014-03-20 08:51:08 +01:00
|
|
|
postInstall = stdenv.lib.optional (udev != null) "[ -e $out/lib/dhcpcd/dev/udev.so ]";
|
2014-02-02 11:27:41 +01:00
|
|
|
|
2009-07-17 13:41:19 +02:00
|
|
|
meta = {
|
|
|
|
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://roy.marples.name/projects/dhcpcd;
|
2012-03-21 17:48:36 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-03-30 06:57:59 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco fpletz ];
|
2009-07-17 13:41:19 +02:00
|
|
|
};
|
|
|
|
}
|