[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/34: gnu: traceroute: Use G-expressions.
From: |
guix-commits |
Subject: |
15/34: gnu: traceroute: Use G-expressions. |
Date: |
Tue, 18 Jul 2023 21:11:57 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 818e9ad283c42e5ec41f61ac87feee99a657b8e8
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 16 02:00:01 2023 +0200
gnu: traceroute: Use G-expressions.
* gnu/packages/networking.scm (traceroute)[arguments]:
Rewrite as G-expressions.
---
gnu/packages/networking.scm | 36 +++++++++++++++++++-----------------
1 file changed, 19 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 02e85da524..3943aed75f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4210,23 +4210,25 @@ network. This must be enabled on the target host,
usually in the BIOS.")
(base32 "07svkglyizxirgcmv6d4ih59f3ds8pnyprvkrqcf5d3p567jcz2h"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ;no test suite
- #:make-flags
- (list (string-append "LIBRARY_PATH="
- (assoc-ref %build-inputs "libc") "/lib")
- (string-append "CFLAGS=-I"
- (assoc-ref %build-inputs "kernel-headers")
- "/include")
- "LDFLAGS=-lm -L../libsupp"
- (string-append "prefix=" (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-make
- (lambda _
- (substitute* "default.rules"
- ((" \\$\\(LIBDEPS\\)") "$(filter-out -l%,$(LIBDEPS))"))))
- (delete 'bootstrap) ;no configure.ac file
- (delete 'configure)))) ;no configure script
+ (list
+ #:tests? #f ; no test suite
+ #:make-flags
+ #~(list (string-append "LIBRARY_PATH="
+ (assoc-ref %build-inputs "libc") "/lib")
+ (string-append "CFLAGS=-I"
+ (assoc-ref %build-inputs "kernel-headers")
+ "/include")
+ "LDFLAGS=-lm -L../libsupp"
+ (string-append "prefix=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-make
+ (lambda _
+ (substitute* "default.rules"
+ ((" \\$\\(LIBDEPS\\)")
+ "$(filter-out -l%,$(LIBDEPS))"))))
+ (delete 'bootstrap) ; no configure.ac file
+ (delete 'configure)))) ; no configure script
(home-page "https://traceroute.sourceforge.net/")
(synopsis "Tracks the route taken by packets over an IP network")
(description "This package provides a modern, but Linux-specific
- 03/34: gnu: evince: Parameterise source URI., (continued)
- 03/34: gnu: evince: Parameterise source URI., guix-commits, 2023/07/18
- 07/34: gnu: whois: Use G-expressions., guix-commits, 2023/07/18
- 11/34: gnu: iperf: Update to 3.14., guix-commits, 2023/07/18
- 02/34: gnu: xtensor: Update to 0.24.6., guix-commits, 2023/07/18
- 06/34: gnu: whois: Remove input labels., guix-commits, 2023/07/18
- 08/34: gnu: ntp: Update to 4.2.8p17., guix-commits, 2023/07/18
- 09/34: gnu: ntp: Remove input labels., guix-commits, 2023/07/18
- 12/34: gnu: spiped: Update to 1.6.2., guix-commits, 2023/07/18
- 10/34: gnu: ntp: Use G-expressions., guix-commits, 2023/07/18
- 13/34: gnu: spiped: Use G-expressions., guix-commits, 2023/07/18
- 15/34: gnu: traceroute: Use G-expressions.,
guix-commits <=
- 19/34: gnu: liblxi: Update to 1.20., guix-commits, 2023/07/18
- 29/34: gnu: libqb: Fix cross-compilation., guix-commits, 2023/07/18
- 26/34: gnu: hwinfo: Make with flags., guix-commits, 2023/07/18
- 30/34: gnu: libqb: Update to 2.0.7., guix-commits, 2023/07/18
- 33/34: gnu: bcachefs-tools: Update to 0.1-17.c8bec83., guix-commits, 2023/07/18
- 34/34: gnu: python-wand: Fix build., guix-commits, 2023/07/18
- 23/34: gnu: hwinfo: Update to 23.1., guix-commits, 2023/07/18
- 25/34: gnu: hwinfo: Factorise 'install-man-pages., guix-commits, 2023/07/18
- 14/34: gnu: traceroute: Update to 2.1.2., guix-commits, 2023/07/18
- 16/34: gnu: wireshark: Update to 4.0.7., guix-commits, 2023/07/18