2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, dbus, nettle, fetchpatch
|
2018-07-21 01:44:44 +01:00
|
|
|
, libidn, libnetfilter_conntrack }:
|
2015-06-19 08:54:41 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
with lib;
|
2015-06-19 08:54:41 +01:00
|
|
|
let
|
|
|
|
copts = concatStringsSep " " ([
|
|
|
|
"-DHAVE_IDN"
|
|
|
|
"-DHAVE_DNSSEC"
|
|
|
|
] ++ optionals stdenv.isLinux [
|
2015-12-25 04:27:31 +00:00
|
|
|
"-DHAVE_DBUS"
|
2015-06-19 08:54:41 +01:00
|
|
|
"-DHAVE_CONNTRACK"
|
|
|
|
]);
|
|
|
|
in
|
2010-10-11 20:30:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-21 01:07:49 +01:00
|
|
|
name = "dnsmasq-2.82";
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2014-08-07 20:00:19 +01:00
|
|
|
url = "http://www.thekelleys.org.uk/dnsmasq/${name}.tar.xz";
|
2020-07-21 01:07:49 +01:00
|
|
|
sha256 = "0cn1xd1s6xs78jmrmwjnh9m6w3q38pk6dyqy2phvasqiyd33cll4";
|
2007-09-03 13:10:57 +01:00
|
|
|
};
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
|
2020-02-19 12:13:22 +00:00
|
|
|
sed '1i#include <linux/sockios.h>' -i src/dhcp.c
|
|
|
|
'';
|
2019-10-14 23:25:28 +01:00
|
|
|
|
2015-06-19 08:54:41 +01:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=("COPTS=${copts}")
|
2014-07-02 23:59:35 +01:00
|
|
|
'';
|
|
|
|
|
2015-06-19 08:54:41 +01:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR="
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"MANDIR=$(out)/man"
|
|
|
|
"LOCALEDIR=$(out)/share/locale"
|
|
|
|
];
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:55:51 +00:00
|
|
|
|
2015-12-25 04:27:31 +00:00
|
|
|
postBuild = optionalString stdenv.isLinux ''
|
2016-07-10 01:44:39 +01:00
|
|
|
make -C contrib/lease-tools
|
2015-12-03 10:04:22 +00:00
|
|
|
'';
|
|
|
|
|
2015-12-25 04:27:31 +00:00
|
|
|
# XXX: Does the systemd service definition really belong here when our NixOS
|
|
|
|
# module can create it in Nix-land?
|
2014-07-02 23:59:35 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 trust-anchors.conf $out/share/dnsmasq/trust-anchors.conf
|
2017-03-07 01:52:08 +00:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
|
|
|
install -Dm644 contrib/MacOSX-launchd/uk.org.thekelleys.dnsmasq.plist \
|
|
|
|
$out/Library/LaunchDaemons/uk.org.thekelleys.dnsmasq.plist
|
|
|
|
substituteInPlace $out/Library/LaunchDaemons/uk.org.thekelleys.dnsmasq.plist \
|
|
|
|
--replace "/usr/local/sbin" "$out/bin"
|
2015-12-25 04:27:31 +00:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
2019-09-16 04:30:58 +01:00
|
|
|
install -Dm644 dbus/dnsmasq.conf $out/share/dbus-1/system.d/dnsmasq.conf
|
2016-07-10 01:44:39 +01:00
|
|
|
install -Dm755 contrib/lease-tools/dhcp_lease_time $out/bin/dhcp_lease_time
|
|
|
|
install -Dm755 contrib/lease-tools/dhcp_release $out/bin/dhcp_release
|
|
|
|
install -Dm755 contrib/lease-tools/dhcp_release6 $out/bin/dhcp_release6
|
2014-07-02 23:59:35 +01:00
|
|
|
|
2014-08-30 15:19:23 +01:00
|
|
|
mkdir -p $out/share/dbus-1/system-services
|
2014-07-02 23:59:35 +01:00
|
|
|
cat <<END > $out/share/dbus-1/system-services/uk.org.thekelleys.dnsmasq.service
|
|
|
|
[D-BUS Service]
|
|
|
|
Name=uk.org.thekelleys.dnsmasq
|
2015-06-19 08:54:41 +01:00
|
|
|
Exec=$out/bin/dnsmasq -k -1
|
2014-07-02 23:59:35 +01:00
|
|
|
User=root
|
|
|
|
SystemdService=dnsmasq.service
|
|
|
|
END
|
|
|
|
'';
|
|
|
|
|
2015-06-19 08:54:41 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-12-25 04:27:31 +00:00
|
|
|
buildInputs = [ nettle libidn ]
|
2018-07-17 21:11:16 +01:00
|
|
|
++ optionals stdenv.isLinux [ dbus libnetfilter_conntrack ];
|
2014-07-02 23:59:35 +01:00
|
|
|
|
2015-06-19 08:54:41 +01:00
|
|
|
meta = {
|
2010-10-11 20:30:54 +01:00
|
|
|
description = "An integrated DNS, DHCP and TFTP server for small networks";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.thekelleys.org.uk/dnsmasq/doc.html";
|
2014-08-11 21:48:36 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ eelco fpletz globin ];
|
2010-07-30 15:47:23 +01:00
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
}
|