[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59093] [PATCH] gnu: Add xnedit
From: |
zimoun |
Subject: |
[bug#59093] [PATCH] gnu: Add xnedit |
Date: |
Fri, 06 Jan 2023 12:50:51 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
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
- [bug#59093] [PATCH] gnu: Add xnedit,
zimoun <=
- [bug#59093] [PATCH] gnu: Add xnedit, Andy Tai, 2023/01/07
- [bug#59093] [PATCH] gnu: Add xnedit, Andy Tai, 2023/01/10
- [bug#59093] [PATCH] gnu: Add xnedit, Simon Tournier, 2023/01/11
- [bug#59093] [PATCH] gnu: Add xnedit, Andy Tai, 2023/01/11
- [bug#59093] [PATCH] gnu: Add xnedit, Simon Tournier, 2023/01/12
- [bug#59093] [PATCH] gnu: Add xnedit, Andy Tai, 2023/01/12
- [bug#59093] [PATCH] gnu: Add xnedit, Simon Tournier, 2023/01/12