dnsmasq: Meta Update

This commit is contained in:
William A. Kennington III 2014-08-11 15:48:36 -05:00
parent adbb9ff796
commit 9194f69e73

View File

@ -32,11 +32,11 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig dbus_libs nettle ]; buildInputs = [ pkgconfig dbus_libs nettle ];
meta = { meta = with stdenv.lib; {
description = "An integrated DNS, DHCP and TFTP server for small networks"; 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 = licenses.gpl2;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = with platforms; linux ++ darwin;
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = with maintainers; [ eelco ];
}; };
} }