gnu: xinetd: Don't hard-code tarball version.
* gnu/packages/web.scm (xinetd)[source]: Construct URI using VERSION.
This commit is contained in:
parent
96d47129f6
commit
9c22b13136
|
@ -4930,8 +4930,11 @@ deployments.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri "https://github.com/xinetd-org/xinetd/archive/xinetd-2-3-15.tar.gz")
|
(uri
|
||||||
(patches (search-patches "xinetd-CVE-2013-4342.patch" "xinetd-fix-fd-leak.patch"))
|
(string-append "https://github.com/xinetd-org/xinetd/archive/xinetd-"
|
||||||
|
(string-join (string-split version #\.) "-") ".tar.gz"))
|
||||||
|
(patches (search-patches "xinetd-CVE-2013-4342.patch"
|
||||||
|
"xinetd-fix-fd-leak.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0k59x52cbzp5fw0n8zn0y54j1ps0x9b72y8k5grzswjdmgs2a2v2"))))
|
"0k59x52cbzp5fw0n8zn0y54j1ps0x9b72y8k5grzswjdmgs2a2v2"))))
|
||||||
|
|
Loading…
Reference in New Issue