* Fix some more "args: with args".

svn path=/nixpkgs/trunk/; revision=22828
This commit is contained in:
Eelco Dolstra
2010-07-30 14:47:23 +00:00
parent 7835419d8a
commit 4bf5b0d36b
13 changed files with 187 additions and 186 deletions
+6 -5
View File
@@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "dnsmasq-2.40";
@@ -10,8 +11,8 @@ stdenv.mkDerivation {
installPhase = "ensureDir \$out/bin; make DESTDIR= BINDIR=\$out/bin MANDIR=\$out/man LOCALEDIR=\$out/share/locale install";
meta = {
description = "DNS forwarder and DHCP server";
homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html;
license = "GPL";
};
description = "DNS forwarder and DHCP server";
homepage = http://www.thekelleys.org.uk/dnsmasq/doc.html;
license = "GPL";
};
}