summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/dns.scm27
1 files changed, 13 insertions, 14 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 25e57b59aef..75c92f5b11d 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -306,27 +306,26 @@ prompt the user with the option to go with insecure DNS only.")
(sha256
(base32 "055gn5kigz0m9y09vig97s1g257hnlkhw4wv9d9wdficnsxcbwwm"))))
(build-system gnu-build-system)
- (native-inputs
- (list pkg-config))
- (inputs
- (list dbus))
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (delete 'configure)
- (add-after 'install 'install-dbus
- (lambda _
- (install-file "dbus/dnsmasq.conf"
- (string-append #$output "/etc/dbus-1/system.d")))))
-
+ #:tests? #f ;no tests
#:make-flags
#~(list (string-append "PREFIX=" #$output)
(string-append "CC=" #$(cc-for-target))
(string-append "PKG_CONFIG=" #$(pkg-config-for-target))
"COPTS=\"-DHAVE_DBUS\"")
- #:tests? #f)) ; no ‘check’ target
- (home-page "https://www.thekelleys.org.uk/dnsmasq/doc.html")
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure) ;no configure
+ (add-after 'install 'install-dbus
+ (lambda _
+ (install-file "dbus/dnsmasq.conf"
+ (string-append #$output "/etc/dbus-1/system.d")))))))
+ (native-inputs
+ (list pkg-config))
+ (inputs
+ (list dbus))
+ (home-page "https://thekelleys.org.uk/dnsmasq/doc.html")
(synopsis "Small caching DNS proxy and DHCP/TFTP server")
(description
"Dnsmasq is a light-weight DNS forwarder and DHCP server. It is designed