|
From: | Andy Tai |
Subject: | [bug#59093] [PATCH] gnu: Add xnedit |
Date: | Fri, 6 Jan 2023 23:14:28 -0800 |
Hi,
On Sun, 06 Nov 2022 at 21:12, Andy Tai <atai@atai.org> wrote:
> + (arguments
> + `(#:make-flags (list (string-append "PREFIX="
> + (assoc-ref %outputs "out"))
--^
this
This pattern is now deprecated, if I understand correctly.
https://guix.gnu.org/en/blog/2021/the-big-change/
Instead, something like,
(arguments
(list
#:make-flags #~(list (string-append "PREFIX=" #$output)
(string-append "CC=" #$(cc-for-target)))
#:tests? #f ; no tests
#:phases #~(modify-phases %standard-phases
(delete 'configure)
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "make" "linux" make-flags)))))))
seems more compliant with the “new” style.
> + (inputs (list
> + motif
> + pcre))
Incorrect indentation or just (inputs (list motif pcre))
Cheers,
simon
[Prev in Thread] | Current Thread | [Next in Thread] |