guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: util-linux: Explicitly depend on 'file'.


From: guix-commits
Subject: 03/03: gnu: util-linux: Explicitly depend on 'file'.
Date: Thu, 29 Jul 2021 08:14:11 -0400 (EDT)

mbakke pushed a commit to branch core-updates-frozen
in repository guix.

commit bc55f3091bac4677df0cf020381c554921fea179
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Jul 29 13:53:35 2021 +0200

    gnu: util-linux: Explicitly depend on 'file'.
    
    ...instead of using the variant that happens to be in %FINAL-INPUTS.
    
    * gnu/packages/linux.scm (util-linux)[inputs]: Add FILE.  While at it, 
remove
    labels.
    [native-inputs]: Remove labels.
---
 gnu/packages/linux.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index d5ee180..e17bc37 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1836,11 +1836,13 @@ providing the system administrator with some help in 
common tasks.")
                         (substitute* (find-files (string-append lib 
"/lib/pkgconfig")
                                                  "\\.pc$")
                           (("^(exec_)?prefix=.*") ""))))))))
-    (inputs `(("zlib" ,zlib)
-              ("ncurses" ,ncurses)))
+    (inputs
+     (list file                         ;for libmagic
+           ncurses
+           zlib))
     (native-inputs
-     `(("perl" ,perl)
-       ("net-base" ,net-base)))         ;for tests
+     (list net-base                     ;for tests
+           perl))
     (home-page "https://www.kernel.org/pub/linux/utils/util-linux/";)
     (synopsis "Collection of utilities for the Linux kernel")
     (description "Util-linux is a diverse collection of Linux kernel



reply via email to

[Prev in Thread] Current Thread [Next in Thread]