mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: inetutils: Remove input labels.
* gnu/packages/admin.scm (inetutils)[inputs, native-inputs]: Remove labels. [arguments]: Use SEARCH-INPUT-FILE.
This commit is contained in:
parent
cbb1cddbfb
commit
73b829b4cc
1 changed files with 12 additions and 10 deletions
|
@ -857,19 +857,21 @@ (define-public inetutils
|
|||
;; Make sure that canonical "coreutils" package is not referred.
|
||||
#:make-flags
|
||||
(list (string-append "CPPFLAGS=-DPATHDEF_CP=\\\""
|
||||
(assoc-ref %build-inputs "coreutils*")
|
||||
"/bin/cp\\\""))
|
||||
(search-input-file %build-inputs "bin/cp")
|
||||
"\\\""))
|
||||
;; On some systems, 'libls.sh' may fail with an error such as:
|
||||
;; "Failed to tell switch -a apart from -A".
|
||||
#:parallel-tests? #f))
|
||||
(inputs `(("coreutils*" ,coreutils)
|
||||
("shadow" ,shadow) ;for login (used in telnetd and rlogind)
|
||||
("ncurses" ,ncurses)
|
||||
("readline" ,readline))) ;for 'ftp'
|
||||
(native-inputs (if (member (%current-system)
|
||||
(package-supported-systems net-tools))
|
||||
`(("netstat" ,net-tools)) ;for tests
|
||||
'()))
|
||||
(inputs
|
||||
(list coreutils
|
||||
shadow ;for login (used in telnetd and rlogind)
|
||||
ncurses
|
||||
readline)) ;for 'ftp'
|
||||
(native-inputs
|
||||
(if (member (%current-system)
|
||||
(package-supported-systems net-tools))
|
||||
(list net-tools) ;for tests
|
||||
'()))
|
||||
(home-page "https://www.gnu.org/software/inetutils/")
|
||||
(synopsis "Basic networking utilities")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue