* dnsmasq updated to 2.55.

svn path=/nixpkgs/trunk/; revision=24222
This commit is contained in:
Eelco Dolstra 2010-10-11 19:30:54 +00:00
parent e1426e9993
commit 48229f2b0d

View File

@ -1,17 +1,17 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "dnsmasq-2.40"; name = "dnsmasq-2.55";
src = fetchurl { src = fetchurl {
url = http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.40.tar.gz; url = "http://www.thekelleys.org.uk/dnsmasq/${name}.tar.gz";
sha256 = "1q346l403rvvmvr14fk2l201p8fl3p5417vkp95zlx00jdb7hl8n"; sha256 = "0agrz7lvqdvh7ps173nr5yl00dblv2lpd0x9pm64f03zjzsyqqyg";
}; };
installPhase = "ensureDir \$out/bin; make DESTDIR= BINDIR=\$out/bin MANDIR=\$out/man LOCALEDIR=\$out/share/locale install"; makeFlags = "DESTDIR= BINDIR=$(out)/bin MANDIR=$(out)/man LOCALEDIR=$(out)/share/locale";
meta = { meta = {
description = "DNS forwarder and DHCP server"; description = "An integrated DNS, DHCP and TFTP server for small networks";
homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html; homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html;
license = "GPL"; license = "GPL";
}; };