summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-31 09:26:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-31 09:27:57 +0100
commit57fd7d65794072a1e2be07d5ed3bb3ef05630f7a (patch)
tree70d4b4d3c923ca39a2a4be4cf3441162d1e7f3ff /gnu/packages
parent45b048a00fe50239dd61b5414a46a0508209cbd5 (diff)
gnu: dnsmasq: Adjust package fields layout.
* gnu/packages/dns.scm (dnsmasq): Modernize package fields layout. [home-page]: Drop "www" from URL. Change-Id: I2f389ef6d1c70c4ebeb29ca54cf723af0f846689
Diffstat (limited to 'gnu/packages')
-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