gnu: yadifa: Update to 2.3.7.
* gnu/packages/dns.scm (yadifa): Update to 2.3.7. [arguments]: Add ‘--disable-build-timestamp’ and ‘--enable-acl’ to, and remove ‘--enable-messages’ from #:configure-flags.
This commit is contained in:
parent
eb0e51c4c7
commit
57b05e4a24
|
@ -443,34 +443,41 @@ served by AS112. Stub and forward zones are supported.")
|
||||||
(define-public yadifa
|
(define-public yadifa
|
||||||
(package
|
(package
|
||||||
(name "yadifa")
|
(name "yadifa")
|
||||||
(version "2.2.6")
|
(version "2.3.7")
|
||||||
(source
|
(source
|
||||||
(let ((build "7246"))
|
(let ((build "7543"))
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "http://cdn.yadifa.eu/sites/default/files/releases/"
|
(string-append "http://cdn.yadifa.eu/sites/default/files/releases/"
|
||||||
name "-" version "-" build ".tar.gz"))
|
name "-" version "-" build ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0j4zj7h72ni3bbqbm1632z0vx8b9fjdrn4n1yx4yyzkpchsipwff")))))
|
||||||
"041a35f5jz2wcn8pxk1m7b2qln2wbvj4ddwb0a53lqabl912xi6p")))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("which" ,which)))
|
`(("which" ,which)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("openssl" ,openssl)))
|
`(("openssl" ,openssl)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'omit-example-configurations
|
(add-before 'configure 'omit-example-configurations
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
((" (etc|var)") ""))
|
((" (etc|var)") ""))
|
||||||
#t)))
|
#t)))
|
||||||
#:configure-flags (list "--sysconfdir=/etc" "--localstatedir=/var"
|
#:configure-flags
|
||||||
"--enable-shared" "--disable-static"
|
(list "--sysconfdir=/etc"
|
||||||
"--enable-messages" "--enable-ctrl"
|
"--localstatedir=/var"
|
||||||
"--enable-nsec" "--enable-nsec3"
|
"--disable-build-timestamp" ; build reproducibly
|
||||||
"--enable-tsig" "--enable-caching")))
|
"--enable-shared"
|
||||||
|
"--disable-static"
|
||||||
|
"--enable-acl"
|
||||||
|
"--enable-caching"
|
||||||
|
"--enable-ctrl" ; enable remote control
|
||||||
|
"--enable-nsec"
|
||||||
|
"--enable-nsec3"
|
||||||
|
"--enable-tsig")))
|
||||||
(home-page "http://www.yadifa.eu/")
|
(home-page "http://www.yadifa.eu/")
|
||||||
(synopsis "Authoritative DNS name server")
|
(synopsis "Authoritative DNS name server")
|
||||||
(description "YADIFA is an authoritative name server for the @dfn{Domain
|
(description "YADIFA is an authoritative name server for the @dfn{Domain
|
||||||
|
|
Loading…
Reference in New Issue