2015-06-19 09:54:41 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus_libs, nettle, libidn, libnetfilter_conntrack }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
|
|
copts = concatStringsSep " " ([
|
|
|
|
"-DHAVE_DBUS"
|
|
|
|
"-DHAVE_IDN"
|
|
|
|
"-DHAVE_DNSSEC"
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
"-DHAVE_CONNTRACK"
|
|
|
|
]);
|
|
|
|
in
|
2010-10-11 21:30:54 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-03 21:50:11 +02:00
|
|
|
name = "dnsmasq-2.75";
|
2007-09-03 14:10:57 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2014-08-07 21:00:19 +02:00
|
|
|
url = "http://www.thekelleys.org.uk/dnsmasq/${name}.tar.xz";
|
2015-08-03 21:50:11 +02:00
|
|
|
sha256 = "1wa1d4if9q6k3hklv8xi06a59k3aqb7pik8rhi2l53i99hflw334";
|
2007-09-03 14:10:57 +02:00
|
|
|
};
|
|
|
|
|
2015-06-19 09:54:41 +02:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=("COPTS=${copts}")
|
2014-07-03 00:59:35 +02:00
|
|
|
'';
|
|
|
|
|
2015-06-19 09:54:41 +02:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR="
|
|
|
|
"BINDIR=$(out)/bin"
|
|
|
|
"MANDIR=$(out)/man"
|
|
|
|
"LOCALEDIR=$(out)/share/locale"
|
|
|
|
];
|
2007-09-03 14:10:57 +02:00
|
|
|
|
2014-07-03 00:59:35 +02:00
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 dbus/dnsmasq.conf $out/etc/dbus-1/system.d/dnsmasq.conf
|
|
|
|
install -Dm644 trust-anchors.conf $out/share/dnsmasq/trust-anchors.conf
|
|
|
|
|
2014-08-30 16:19:23 +02:00
|
|
|
mkdir -p $out/share/dbus-1/system-services
|
2014-07-03 00:59:35 +02: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 09:54:41 +02:00
|
|
|
Exec=$out/bin/dnsmasq -k -1
|
2014-07-03 00:59:35 +02:00
|
|
|
User=root
|
|
|
|
SystemdService=dnsmasq.service
|
|
|
|
END
|
|
|
|
'';
|
|
|
|
|
2015-06-19 09:54:41 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ dbus_libs nettle libidn ]
|
|
|
|
++ optional stdenv.isLinux libnetfilter_conntrack;
|
2014-07-03 00:59:35 +02:00
|
|
|
|
2015-06-19 09:54:41 +02:00
|
|
|
meta = {
|
2010-10-11 21:30:54 +02:00
|
|
|
description = "An integrated DNS, DHCP and TFTP server for small networks";
|
2010-07-30 16:47:23 +02:00
|
|
|
homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html;
|
2014-08-11 22:48:36 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ eelco ];
|
2010-07-30 16:47:23 +02:00
|
|
|
};
|
2007-09-03 14:10:57 +02:00
|
|
|
}
|