[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: iputils: Use new style.
From: |
guix-commits |
Subject: |
07/09: gnu: iputils: Use new style. |
Date: |
Fri, 8 Sep 2023 06:56:19 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 0007b45437a3d1e5db2098b9954b83aa28dcb7f6
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Sep 7 23:27:08 2023 +0800
gnu: iputils: Use new style.
* gnu/packages/networking.scm (iputils)[arguments]: Use G-expression.
[native-inputs]: Remove labels.
---
gnu/packages/networking.scm | 29 +++++++++++++++--------------
1 file changed, 15 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1403bab363..b349bfe096 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1575,21 +1575,22 @@ intended as a substitute for the PPPStatus and
EthStatus projects.")
"1qfdvr60mlwh5kr4p27wjknz1cvrwfi6iadh9ny45661v22i0njx"))))
(build-system meson-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'disable-ping-test
- (lambda _
- ;; Disable ping test, as it requires root or raw socket
capabilities.
- (substitute* "test/meson.build"
- (("if build_ping == true")
- "if false")))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-ping-test
+ (lambda _
+ ;; Disable ping test, as it requires root or raw socket
capabilities.
+ (substitute* "test/meson.build"
+ (("if build_ping == true")
+ "if false")))))))
(native-inputs
- `(("gettext" ,gettext-minimal)
- ("pkg-config" ,pkg-config)
- ("docbook-xsl" ,docbook-xsl)
- ("docbook-xml" ,docbook-xml)
- ("libxml2" ,libxml2) ;for XML_CATALOG_FILES
- ("xsltproc" ,libxslt)))
+ (list gettext-minimal
+ pkg-config
+ docbook-xsl
+ docbook-xml
+ libxml2 ;for XML_CATALOG_FILES
+ libxslt))
(inputs
(list libcap libidn2 openssl))
(synopsis "Collection of network utilities")
- branch master updated (d4645d5d25 -> 0fbeeee7e9), guix-commits, 2023/09/08
- 01/09: gnu: ganeti: Fix build., guix-commits, 2023/09/08
- 04/09: gnu: drbd-utils: Update to 9.25.0., guix-commits, 2023/09/08
- 06/09: gnu: iputils: Update to 20221126., guix-commits, 2023/09/08
- 02/09: services: ganeti: Fix tests., guix-commits, 2023/09/08
- 07/09: gnu: iputils: Use new style.,
guix-commits <=
- 09/09: services: Open vSwitch: Depend on 'user-processes' target., guix-commits, 2023/09/08
- 08/09: gnu: openvswitch: Update to 3.2.0., guix-commits, 2023/09/08
- 03/09: gnu: varnish: Update to 7.3.0., guix-commits, 2023/09/08
- 05/09: gnu: python-bitarray: Update to 2.8.1., guix-commits, 2023/09/08