2014-07-02 23:59:35 +01:00
|
|
|
{ pkgconfig, dbus_libs, nettle, stdenv, fetchurl }:
|
2010-07-30 15:47:23 +01:00
|
|
|
|
2010-10-11 20:30:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-07 19:51:39 +01:00
|
|
|
name = "dnsmasq-2.71";
|
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";
|
|
|
|
sha256 = "1fpzpzja7qr8b4kfdhh4i4sijp62c634yf0xvq2n4p7d5xbzn6a9";
|
2007-09-03 13:10:57 +01:00
|
|
|
};
|
|
|
|
|
2014-07-02 23:59:35 +01:00
|
|
|
# Can't rely on make flags because of space in one of the parameters
|
|
|
|
buildPhase = ''
|
|
|
|
make COPTS="-DHAVE_DNSSEC -DHAVE_DBUS"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# make flags used for installation only
|
2010-10-11 20:30:54 +01:00
|
|
|
makeFlags = "DESTDIR= BINDIR=$(out)/bin MANDIR=$(out)/man LOCALEDIR=$(out)/share/locale";
|
2007-09-03 13:10:57 +01:00
|
|
|
|
2014-07-02 23:59:35 +01: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
|
|
|
|
|
|
|
|
ensureDir $out/share/dbus-1/system-services
|
|
|
|
cat <<END > $out/share/dbus-1/system-services/uk.org.thekelleys.dnsmasq.service
|
|
|
|
[D-BUS Service]
|
|
|
|
Name=uk.org.thekelleys.dnsmasq
|
|
|
|
Exec=$out/sbin/dnsmasq -k -1
|
|
|
|
User=root
|
|
|
|
SystemdService=dnsmasq.service
|
|
|
|
END
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig dbus_libs nettle ];
|
|
|
|
|
2012-10-26 14:54:53 +01:00
|
|
|
meta = {
|
2010-10-11 20:30:54 +01:00
|
|
|
description = "An integrated DNS, DHCP and TFTP server for small networks";
|
2010-07-30 15:47:23 +01:00
|
|
|
homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html;
|
|
|
|
license = "GPL";
|
2014-08-07 19:49:34 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2012-10-26 14:54:53 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2010-07-30 15:47:23 +01:00
|
|
|
};
|
2007-09-03 13:10:57 +01:00
|
|
|
}
|