mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Use xxd instead of vim.
* gnu/packages/audio.scm (faust-2)[native-inputs]: Replace vim with xxd. * gnu/packages/avr.scm (microscheme)[native-inputs]: Likewise. * gnu/packages/bioinformatics.scm (star)[native-inputs]: Likewise. * gnu/packages/disk.scm (dosfstools)[native-inputs]: Likewise. * gnu/packages/package-management.scm (diffoscope)[inputs]: Likewise.
This commit is contained in:
parent
b0a1d7ef7d
commit
9fc513ad10
5 changed files with 5 additions and 5 deletions
|
@ -1078,7 +1078,7 @@ (define-public faust-2
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("llvm" ,llvm-with-rtti)
|
`(("llvm" ,llvm-with-rtti)
|
||||||
("which" ,which)
|
("which" ,which)
|
||||||
("xxd" ,vim)
|
("xxd" ,xxd)
|
||||||
("ctags" ,emacs-minimal) ; for ctags
|
("ctags" ,emacs-minimal) ; for ctags
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
|
@ -157,7 +157,7 @@ (define-public microscheme
|
||||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("unzip" ,unzip)
|
`(("unzip" ,unzip)
|
||||||
("vim" ,vim))) ; for xxd
|
("xxd" ,xxd)))
|
||||||
(home-page "http://microscheme.org/")
|
(home-page "http://microscheme.org/")
|
||||||
(synopsis "Scheme subset for Atmel microcontrollers")
|
(synopsis "Scheme subset for Atmel microcontrollers")
|
||||||
(description
|
(description
|
||||||
|
|
|
@ -5408,7 +5408,7 @@ (define-public star
|
||||||
#t))
|
#t))
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("vim" ,vim))) ; for xxd
|
`(("xxd" ,xxd)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("htslib" ,htslib)
|
`(("htslib" ,htslib)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
|
@ -216,7 +216,7 @@ (define-public dosfstools
|
||||||
`(#:make-flags (list (string-append "PREFIX=" %output)
|
`(#:make-flags (list (string-append "PREFIX=" %output)
|
||||||
"CC=gcc")))
|
"CC=gcc")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("xxd" ,vim))) ; for tests
|
`(("xxd" ,xxd))) ; for tests
|
||||||
(home-page "https://github.com/dosfstools/dosfstools")
|
(home-page "https://github.com/dosfstools/dosfstools")
|
||||||
(synopsis "Utilities for making and checking MS-DOS FAT file systems")
|
(synopsis "Utilities for making and checking MS-DOS FAT file systems")
|
||||||
(description
|
(description
|
||||||
|
|
|
@ -538,7 +538,7 @@ (define-public diffoscope
|
||||||
("python-libarchive-c" ,python-libarchive-c)
|
("python-libarchive-c" ,python-libarchive-c)
|
||||||
("python-tlsh" ,python-tlsh)
|
("python-tlsh" ,python-tlsh)
|
||||||
("colordiff" ,colordiff)
|
("colordiff" ,colordiff)
|
||||||
("xxd" ,vim)
|
("xxd" ,xxd)
|
||||||
|
|
||||||
;; Below are modules used for tests.
|
;; Below are modules used for tests.
|
||||||
("python-pytest" ,python-pytest)
|
("python-pytest" ,python-pytest)
|
||||||
|
|
Loading…
Reference in a new issue