mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 21:27:37 -05:00
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.
This commit is contained in:
parent
cdd3141f19
commit
bc55f3091b
1 changed files with 6 additions and 4 deletions
|
@ -1836,11 +1836,13 @@ (define-public util-linux
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue