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>
This commit is contained in:
parent
66e677f58e
commit
ad82d834f6
1 changed files with 7 additions and 8 deletions
|
@ -89,15 +89,14 @@
|
||||||
(base32 "0vj3wix17vl7a85hg673qqyrhw9sbq0xiadbbij7v0nm1gdl3a18"))))
|
(base32 "0vj3wix17vl7a85hg673qqyrhw9sbq0xiadbbij7v0nm1gdl3a18"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
(list #:make-flags
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
(string-append "prefix=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure)))) ; no configure script
|
(delete 'configure)))) ; no configure script
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
(list gettext-minimal perl))
|
||||||
("perl" ,perl)))
|
|
||||||
(home-page "https://waterlan.home.xs4all.nl/dos2unix.html")
|
(home-page "https://waterlan.home.xs4all.nl/dos2unix.html")
|
||||||
(synopsis "DOS/Mac to Unix and vice versa text file format converter")
|
(synopsis "DOS/Mac to Unix and vice versa text file format converter")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue