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,18 +857,20 @@ re-executing them as necessary.")
 | 
			
		|||
       ;; 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)
 | 
			
		||||
    (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))
 | 
			
		||||
                       `(("netstat" ,net-tools))  ;for tests
 | 
			
		||||
         (list net-tools)               ;for tests
 | 
			
		||||
         '()))
 | 
			
		||||
    (home-page "https://www.gnu.org/software/inetutils/")
 | 
			
		||||
    (synopsis "Basic networking utilities")
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue