gnu: Rename 'libnftnl/fixed' to 'libnftnl/pinned'.
* gnu/packages/linux.scm: Rename variable 'libnftnl/fixed' to 'libnftnl/pinned', add deprecation. (iptables)[native-inputs]: Replace 'libnftnl/fixed' with 'libnftnl/pinned'. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
44f43603d3
commit
81f8cfcf0b
1 changed files with 6 additions and 2 deletions
|
@ -2848,7 +2848,7 @@ external rate conversion.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config flex bison))
|
(list pkg-config flex bison))
|
||||||
(inputs
|
(inputs
|
||||||
(list libmnl libnftnl/fixed))
|
(list libmnl libnftnl/pinned))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f ; no test suite
|
(list #:tests? #f ; no test suite
|
||||||
#:configure-flags ; add $libdir to the RUNPATH of executables
|
#:configure-flags ; add $libdir to the RUNPATH of executables
|
||||||
|
@ -7654,9 +7654,13 @@ libnftnl has been previously known as libnftables. This library is currently
|
||||||
used by nftables.")
|
used by nftables.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
;;; The symbol libnftl/fixed should be used when libnftnl needs fixes
|
||||||
|
;;; (security or else) and this deprecation could be removed.
|
||||||
|
(define-deprecated/public-alias libnftnl/fixed libnftnl/pinned)
|
||||||
|
|
||||||
;; This is used in iptables, which contributes to rust. We're pinning this
|
;; This is used in iptables, which contributes to rust. We're pinning this
|
||||||
;; variant to avoid accidental rebuilds of rust.
|
;; variant to avoid accidental rebuilds of rust.
|
||||||
(define-public libnftnl/fixed
|
(define-public libnftnl/pinned
|
||||||
(package (inherit libnftnl)
|
(package (inherit libnftnl)
|
||||||
(version "1.2.0")
|
(version "1.2.0")
|
||||||
(source
|
(source
|
||||||
|
|
Reference in a new issue