me
/
guix
Archived
1
0
Fork 0

gnu: libcap: Add 2.34.

* gnu/packages/linux.scm (libcap/next): New public variable.
master
Marius Bakke 2020-05-05 16:27:55 +02:00
parent 49279343ac
commit 7431553bd6
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 15 additions and 0 deletions

View File

@ -2171,6 +2171,21 @@ Linux-based operating systems.")
;; License is BSD-3 or GPLv2, at the user's choice.
(license license:gpl2)))
;; libcap 2.31 causes problems for 'fakeroot', so provide this newer variant.
;; To be merged with libcap on the next rebuild cycle.
(define-public libcap/next
(package
(inherit libcap)
(version "2.34")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://kernel.org/linux/libs/security/linux-privs/"
"libcap2/libcap-" version ".tar.xz"))
(sha256
(base32
"048n1gy2p48vl9hkrr9wymfxxcpwj2aslz2bv79nhl4m2lhd9kdf"))))))
(define-public bridge-utils
(package
(name "bridge-utils")