GNU bug report logs -
#32749
package-with-explicit-inputs leaks-in additional inputs
Previous Next
Full log
View this message in rfc822 format
Hello!
Jan Nieuwenhuizen <janneke <at> gnu.org> skribis:
> 11:56:03 janneke <at> dundal:~/src/guix-master
> $ ./pre-inst-env guix graph --type=bag -e '(begin (use-modules (guix packages)) (@@ (gnu packages pawei) gnu-make-no-implicit-inputs))' | wc -l
> 14
> 11:56:22 janneke <at> dundal:~/src/guix-master
> $ ./pre-inst-env guix graph --type=bag -e '(begin (use-modules (guix packages)) (@@ (gnu packages pawei) gnu-make-explicit-inputs))' | wc -l
> 79
[...]
> (define gnu-make-no-implicit-inputs
> (package-with-bootstrap-guile
> (package (inherit gnu-make)
> (name "make-no-implicit-inputs")
> (inputs (%bootstrap-inputs+toolchain))
> (native-inputs '())
> (arguments `(#:guile ,%bootstrap-guile
> #:implicit-inputs? #f
> ,@(package-arguments diffutils))))))
>
> (define gnu-make-explicit-inputs
> (let ((p (package-with-explicit-inputs gnu-make
> (%bootstrap-inputs+toolchain)
> #:guile %bootstrap-guile)))
> (package-with-bootstrap-guile
> (package (inherit p)
> (name "make-explicit-inputs")
> (arguments (package-arguments p))))))
The difference comes from the fact that ‘gnu-make-explicit-inputs’ has
Guile in its ‘inputs’:
--8<---------------cut here---------------start------------->8---
scheme@(gnu packages pawei)> (package-direct-inputs gnu-make-explicit-inputs)
$5 = (("libc" #<package glibc-bootstrap <at> 0 gnu/packages/bootstrap.scm:150 3d216c0>) ("gcc" #<package gcc-bootstrap <at> 0 gnu/packages/bootstrap.scm:150 3d21600>) ("binutils" #<package binutils-bootstrap <at> 0 gnu/packages/bootstrap.scm:150 3d21540>) ("coreutils&co" #<package bootstrap-binaries <at> 0 gnu/packages/bootstrap.scm:150 3d21480>) ("bash" #<package bootstrap-binaries <at> 0 gnu/packages/bootstrap.scm:150 3d21480>) ("guile" #<package guile <at> 2.0.14 gnu/packages/bootstrap.scm:150 3d213c0>))
--8<---------------cut here---------------end--------------->8---
This comes from the fact that the ‘inputs’ field is not overridden,
unlike in the case of ‘gnu-make-no-implicit-inputs’.
To solve this, the solution is to add this one ‘inputs’ line:
--8<---------------cut here---------------start------------->8---
(define gnu-make-explicit-inputs
(let ((p (package-with-explicit-inputs gnu-make
(%bootstrap-inputs+toolchain)
#:guile %bootstrap-guile)))
(package-with-bootstrap-guile
(package (inherit p)
(name "make-explicit-inputs")
(inputs '()) ;<- HERE
(arguments (package-arguments p))))))
--8<---------------cut here---------------end--------------->8---
Perhaps you hit similar cases on ‘wip-bootstrap’? It’s easy to leave
out too many inputs…
Cheers,
Ludo’.
This bug report was last modified 6 years and 251 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.