diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-02 11:12:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-02 11:12:11 +0200 |
commit | f6c2d05ceb67f5e3db02ed7e91e7e55aa1be2061 (patch) | |
tree | 1638327d8023adec44764a370808e9d60dfbe8f6 /gnu | |
parent | 28cbc587d3588810d4370c7daa9693bde78a9a25 (diff) | |
download | patches-f6c2d05ceb67f5e3db02ed7e91e7e55aa1be2061.tar patches-f6c2d05ceb67f5e3db02ed7e91e7e55aa1be2061.tar.gz |
gnu: libcap: Update to 2.24.
* gnu/packages/linux.scm (libcap): Update to 2.24. Fetch the source
from mirror://kernel.org.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index adb6c5317e..873b651ef2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1021,19 +1021,15 @@ advanced aspects of IP configuration (iptunnel, ipmaddr).") (define-public libcap (package (name "libcap") - (version "2.22") + (version "2.24") (source (origin (method url-fetch) - - ;; Tarballs used to be available from - ;; <https://www.kernel.org/pub/linux/libs/security/linux-privs/> - ;; but they never came back after kernel.org was compromised. (uri (string-append - "mirror://debian/pool/main/libc/libcap2/libcap2_" - version ".orig.tar.gz")) + "mirror://kernel.org/linux/libs/security/linux-privs/" + "libcap2/libcap-" version ".tar.xz")) (sha256 (base32 - "07vjhkznm82p8dm4w6j8mmg7h5c70lp5s9bwwfdmgwpbixfydjp1")))) + "0rbc9qbqs5bp9am9s9g83wxj5k4ixps2agy9dxr1v1fwg27mdr6f")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases |