[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: dos2unix: Use new package style.
From: |
guix-commits |
Subject: |
02/02: gnu: dos2unix: Use new package style. |
Date: |
Wed, 1 Mar 2023 22:14:14 -0500 (EST) |
iyzsong pushed a commit to branch master
in repository guix.
commit ad82d834f63aa24199d67a060864c1a620c3a6e1
Author: Timotej Lazar <timotej.lazar@araneo.si>
AuthorDate: Fri Feb 24 15:15:25 2023 +0100
gnu: dos2unix: Use new package style.
* gnu/packages/textutils.scm (dos2unix)[arguments]: Use gexps.
[native-inputs]: Drop labels.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
gnu/packages/textutils.scm | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 9efcda688b..e5d3a0efc0 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -89,15 +89,14 @@
(base32 "0vj3wix17vl7a85hg673qqyrhw9sbq0xiadbbij7v0nm1gdl3a18"))))
(build-system gnu-build-system)
(arguments
- `(#:make-flags
- (list (string-append "CC=" ,(cc-for-target))
- (string-append "prefix=" (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)))) ; no configure script
+ (list #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "prefix=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)))) ; no configure script
(native-inputs
- `(("gettext" ,gettext-minimal)
- ("perl" ,perl)))
+ (list gettext-minimal perl))
(home-page "https://waterlan.home.xs4all.nl/dos2unix.html")
(synopsis "DOS/Mac to Unix and vice versa text file format converter")
(description