gnu: iputils: Use new style.
* gnu/packages/networking.scm (iputils)[arguments]: Use G-expression. [native-inputs]: Remove labels.master
parent
51939d19c1
commit
0007b45437
|
@ -1575,8 +1575,9 @@ intended as a substitute for the PPPStatus and EthStatus projects.")
|
||||||
"1qfdvr60mlwh5kr4p27wjknz1cvrwfi6iadh9ny45661v22i0njx"))))
|
"1qfdvr60mlwh5kr4p27wjknz1cvrwfi6iadh9ny45661v22i0njx"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'disable-ping-test
|
(add-after 'unpack 'disable-ping-test
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Disable ping test, as it requires root or raw socket capabilities.
|
;; Disable ping test, as it requires root or raw socket capabilities.
|
||||||
|
@ -1584,12 +1585,12 @@ intended as a substitute for the PPPStatus and EthStatus projects.")
|
||||||
(("if build_ping == true")
|
(("if build_ping == true")
|
||||||
"if false")))))))
|
"if false")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
(list gettext-minimal
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("docbook-xsl" ,docbook-xsl)
|
docbook-xsl
|
||||||
("docbook-xml" ,docbook-xml)
|
docbook-xml
|
||||||
("libxml2" ,libxml2) ;for XML_CATALOG_FILES
|
libxml2 ;for XML_CATALOG_FILES
|
||||||
("xsltproc" ,libxslt)))
|
libxslt))
|
||||||
(inputs
|
(inputs
|
||||||
(list libcap libidn2 openssl))
|
(list libcap libidn2 openssl))
|
||||||
(synopsis "Collection of network utilities")
|
(synopsis "Collection of network utilities")
|
||||||
|
|
Reference in New Issue