Am Sat, May 23, 2026 at 07:24:35PM +0200 schrieb Ludovic Courtès:
> I don’t see how packages would be moved from ‘native-inputs’ to
> ‘inputs’: the semantics of that are independent of which outputs exist.
I am thinking of situations like this:
(define-public turbovnc
...
(native-inputs
(list `(,openjdk "jdk")
pkg-config
python))
So maybe I am mixing up native and other inputs, but in any case I need
to duplicate the inputs; what used to be
(define-public mpfr
(inputs (list gmp))
will have to become something like
(define-publix mpfr
(inputs (list gmp
`(,gmp "dev")))
since I need the two outputs ("out" for libgmp.so and "dev" for gmp.h)
of gmp to build mpfr.
Andreas