mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 @@ re-executing them as necessary.")
|
||||||
;; Make sure that canonical "coreutils" package is not referred.
|
;; Make sure that canonical "coreutils" package is not referred.
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "CPPFLAGS=-DPATHDEF_CP=\\\""
|
(list (string-append "CPPFLAGS=-DPATHDEF_CP=\\\""
|
||||||
(assoc-ref %build-inputs "coreutils*")
|
(search-input-file %build-inputs "bin/cp")
|
||||||
"/bin/cp\\\""))
|
"\\\""))
|
||||||
;; On some systems, 'libls.sh' may fail with an error such as:
|
;; On some systems, 'libls.sh' may fail with an error such as:
|
||||||
;; "Failed to tell switch -a apart from -A".
|
;; "Failed to tell switch -a apart from -A".
|
||||||
#:parallel-tests? #f))
|
#:parallel-tests? #f))
|
||||||
(inputs `(("coreutils*" ,coreutils)
|
(inputs
|
||||||
("shadow" ,shadow) ;for login (used in telnetd and rlogind)
|
(list coreutils
|
||||||
("ncurses" ,ncurses)
|
shadow ;for login (used in telnetd and rlogind)
|
||||||
("readline" ,readline))) ;for 'ftp'
|
ncurses
|
||||||
(native-inputs (if (member (%current-system)
|
readline)) ;for 'ftp'
|
||||||
(package-supported-systems net-tools))
|
(native-inputs
|
||||||
`(("netstat" ,net-tools)) ;for tests
|
(if (member (%current-system)
|
||||||
'()))
|
(package-supported-systems net-tools))
|
||||||
|
(list net-tools) ;for tests
|
||||||
|
'()))
|
||||||
(home-page "https://www.gnu.org/software/inetutils/")
|
(home-page "https://www.gnu.org/software/inetutils/")
|
||||||
(synopsis "Basic networking utilities")
|
(synopsis "Basic networking utilities")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue