[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/20: gnu: libnatpmp: Use gexps and simplify.
From: |
guix-commits |
Subject: |
01/20: gnu: libnatpmp: Use gexps and simplify. |
Date: |
Tue, 9 Jan 2024 22:28:53 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit c235957534cf2f42e38c876318a64b5c784ebd8b
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Aug 18 00:38:13 2023 -0400
gnu: libnatpmp: Use gexps and simplify.
* gnu/packages/networking.scm (libnatpmp) [arguments]: Use gexps. Use gexp
variables and cc-for-target in make flags.
---
gnu/packages/networking.scm | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index cc6f1a1e04..938e27fd79 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1427,19 +1427,13 @@ files contain direct mappings of the abstractions
provided by the ØMQ C API.")
"0w7wvf4yi8qv659dg9d3ndqvh3bqhgm21gd135spwhq6hhnfv106"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (delete 'check)) ; no tests
- #:make-flags
- (let* ((target ,(%current-target-system))
- (gcc (if target
- (string-append target "-gcc")
- "gcc")))
- (list
- (string-append "CC=" gcc)
- (string-append "INSTALLPREFIX=" (assoc-ref %outputs "out"))
- (string-append "LDFLAGS=-Wl,-rpath=" %output "/lib")))))
+ (list #:phases #~(modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'check)) ; no tests
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "INSTALLPREFIX=" #$output)
+ (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))))
(home-page "http://miniupnp.free.fr/libnatpmp.html")
(synopsis "C library implementing NAT-PMP")
(description
- branch master updated (8fefe1b345 -> 58ab25a2ce), guix-commits, 2024/01/09
- 02/20: gnu: libnatpmp: Update home page., guix-commits, 2024/01/09
- 07/20: gnu: Add xdiff., guix-commits, 2024/01/09
- 19/20: tests: telephony: Fix VPATH builds., guix-commits, 2024/01/09
- 01/20: gnu: libnatpmp: Use gexps and simplify.,
guix-commits <=
- 06/20: gnu: Add llhttp., guix-commits, 2024/01/09
- 09/20: gnu: libnatpmp: Update to 20230423-0.6a850fd., guix-commits, 2024/01/09
- 12/20: gnu: Add dhtnet., guix-commits, 2024/01/09
- 11/20: gnu: opendht: Update to 3.1.7., guix-commits, 2024/01/09
- 05/20: gnu: Add expected-lite., guix-commits, 2024/01/09
- 10/20: gnu: msgpack: Deprecate with msgpack-c., guix-commits, 2024/01/09
- 14/20: gnu: ffmpeg-jami: Update configure flags., guix-commits, 2024/01/09
- 17/20: gnu: jami: Update to 20231222.2., guix-commits, 2024/01/09
- 15/20: gnu: ffmpeg-jami: Relocate to (gnu packages video)., guix-commits, 2024/01/09
- 18/20: gnu: jami-docs: Update to 0.0.0-2.a48997d., guix-commits, 2024/01/09