diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-03 19:01:49 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-04 00:44:55 +0100 |
commit | ce62ca5b1ea02e043f33019f302a2dfb8d20f839 (patch) | |
tree | 1a7d72a88b8ab13dc0ca237098fa8d023118a5de /gnu/packages/linux.scm | |
parent | a5b24c35ca68059f06fb1ff8a656d84d1a1e86ed (diff) | |
download | guix-ce62ca5b1ea02e043f33019f302a2dfb8d20f839.tar.gz guix-ce62ca5b1ea02e043f33019f302a2dfb8d20f839.zip |
gnu: ipset: Update to 7.11.
* gnu/packages/linux.scm (ipset): Update to 7.11.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e77de3db6f..5fbf525e40 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7811,13 +7811,14 @@ receiving. It is dedicated to the PL011 UART of the Raspberry Pi.") (define-public ipset (package (name "ipset") - (version "7.10") - (source (origin - (method url-fetch) - (uri (string-append "https://ipset.netfilter.org/ipset-" version ".tar.bz2")) - (sha256 - (base32 - "1xlwgsy06jx0bckc5r2wvyys8jfpc5klfqqqshmk5zp28fx0cjdj")))) + (version "7.11") + (source + (origin + (method url-fetch) + (uri (string-append "https://ipset.netfilter.org/" + "ipset-" version ".tar.bz2")) + (sha256 + (base32 "0zdzp9fhpp6hmirzxy7w27fb9xx9lxd2ykxbn8by7ngi62nvll9i")))) (build-system gnu-build-system) (inputs `(("libmnl" ,libmnl))) |