Package: guix
Version: f543fbda4c9ee279ed93ace6c3fa6de37c543f36
Severity: serious
Hi,
Commit 1ed7f409c3 ("gnu: Remove package aliases after their 6-month
deprecation") deleted the 'swig' and 'swig-next' variables from
gnu/packages/swig.scm, but gnu/packages/disk.scm was not updated and
still references the bare 'swig' variable:
gnu/packages/disk.scm:1243
(native-inputs
(list autoconf
...
python-setuptools
swig)) ;; <-- undefined now
As a result 'guix pull' fails on current master while building the
package cache:
(exception unbound-variable (value #f)
(value "Unbound variable: ~S") (value (swig)) (value #f))
The chain through which this is reached: gnome-control-center ->
udisks -> libblockdev -> volume-key.
Suggested fix: replace 'swig' with 'swig-4.0' in volume-key's
native-inputs in gnu/packages/disk.scm.
thanks,faron