diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-19 04:17:22 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-19 06:00:24 +0100 |
commit | 9c22b13136c52c2cd5ef4088a05d9c2a5ef28465 (patch) | |
tree | 3e0519f74cb751840ba70f17c58a99036e995be4 /gnu/packages | |
parent | 96d47129f632d3d91822134ed402f9256f07c795 (diff) | |
download | guix-9c22b13136c52c2cd5ef4088a05d9c2a5ef28465.tar guix-9c22b13136c52c2cd5ef4088a05d9c2a5ef28465.tar.gz |
gnu: xinetd: Don't hard-code tarball version.
* gnu/packages/web.scm (xinetd)[source]: Construct URI using VERSION.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/web.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 9156655b30..553b1e30c4 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -4930,15 +4930,18 @@ deployments.") (source (origin (method url-fetch) - (uri "https://github.com/xinetd-org/xinetd/archive/xinetd-2-3-15.tar.gz") - (patches (search-patches "xinetd-CVE-2013-4342.patch" "xinetd-fix-fd-leak.patch")) + (uri + (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 (base32 "0k59x52cbzp5fw0n8zn0y54j1ps0x9b72y8k5grzswjdmgs2a2v2")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-loadavg") - #:tests? #f )) ; no tests + #:tests? #f)) ; no tests (home-page "https://github.com/xinetd-org/xinetd") (synopsis "Internet services daemon") (description "@code{xinetd}, a more secure replacement for @code{inetd}, |