* WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
@ 2020-03-28 13:01 znavko
2020-03-29 9:55 ` Gábor Boskovits
0 siblings, 1 reply; 2+ messages in thread
From: znavko @ 2020-03-28 13:01 UTC (permalink / raw)
To: help-guix
[-- Attachment #1: Type: text/plain, Size: 3460 bytes --]
Hello, Guix developers!
Could you advise me what to type in my config.scm for thess warnings:
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
# guix system reconfigure /etc/config.scm
...
building /gnu/store/92mja1niwsr6mp56nc89zax4in0cn4cf-grub.cfg.drv...
/gnu/store/i7hdwgvnwgys0rapx75rziy81xx4dgcs-system
/gnu/store/bqk54842379a23fz05h2kgvnxajvy2nr-grub.cfg
activating system...
The following derivation will be built:
/gnu/store/i8lqchhchnw4dj4k0bmdhaahnhd27vma-switch-to-system.scm.drv
building /gnu/store/i8lqchhchnw4dj4k0bmdhaahnhd27vma-switch-to-system.scm.drv...
;;; WARNING: loading compiled file /gnu/store/d0gpf9mrrmm7sm78ysy19xn68qxkjw5q-module-import-compiled/gnu/build/activation.go failed:
;;; In procedure load-thunk-from-memory: incompatible bytecode kind
;;; compiling /gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/activation.scm
;;; WARNING: loading compiled file /gnu/store/d0gpf9mrrmm7sm78ysy19xn68qxkjw5q-module-import-compiled/gnu/build/accounts.go failed:
;;; In procedure load-thunk-from-memory: incompatible bytecode kind
;;; compiling /gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/accounts.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/accounts.scm.go
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/activation.scm.go
making '/gnu/store/i7hdwgvnwgys0rapx75rziy81xx4dgcs-system' the current system...
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/g6dx324c7v8g1k4xn2zy71cjndi5xrqi-etc...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
The following derivation will be built:
/gnu/store/bbwy629rk8s016m9cj0ixb653hh20cnr-install-bootloader.scm.drv
building /gnu/store/bbwy629rk8s016m9cj0ixb653hh20cnr-install-bootloader.scm.drv...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
;;; WARNING: loading compiled file /gnu/store/ir03j1l8q9as11j1xkfyj7q9s0mpyr1z-module-import-compiled/gnu/build/bootloader.go failed:
;;; In procedure load-thunk-from-memory: incompatible bytecode kind
;;; compiling /gnu/store/bms268qaaq2rfb14yw5v0pj26qxp2bmc-module-import/gnu/build/bootloader.scm
;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/bms268qaaq2rfb14yw5v0pj26qxp2bmc-module-import/gnu/build/bootloader.scm.go
guix system: bootloader successfully installed on '/boot/efi'
0.0 MB will be downloaded:
/gnu/store/1x9xc9nbh0r2shpzib6jd3wallmsh9hr-module-import-compiled
downloading from https://ci.guix.gnu.org/nar/lzip/1x9xc9nbh0r2shpzib6jd3wallmsh9hr-module-import-compiled...
module-import-compiled 20KiB 3.2MiB/s 00:00 [##################] 100.0%
The following derivation will be built:
/gnu/store/a7cs4dfc6dk1qn2kgbbvx4nw054kbm8d-upgrade-shepherd-services.scm.drv
building /gnu/store/a7cs4dfc6dk1qn2kgbbvx4nw054kbm8d-upgrade-shepherd-services.scm.drv...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
[-- Attachment #2: guix-config.scm --]
[-- Type: application/octet-stream, Size: 2646 bytes --]
;-*- mode: Scheme; -*-
;;this is znavko's cute config
;; for lightweight xfce4 desktop
(use-modules (gnu) (gnu system nss)
(gnu system locale) ;;for locale-definition
(gnu services desktop)
(srfi srfi-1) ;;for remove function
(gnu services networking) ;;for remove ntp
(gnu services avahi) ;;for remove avahi
(gnu services xorg)
(gnu packages admin) ;;for wpa_supplicant
)
(use-service-modules desktop)
(use-package-modules certs gnome)
(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
(bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi")))
(file-systems (cons*
(file-system (device "/dev/sda1") (mount-point "/boot/efi") (type "vfat"))
(file-system (device "/dev/sda2") (mount-point "/") (type "ext4"))
%base-file-systems))
(swap-devices '("/dev/sda3"))
(users (cons* (user-account (name "bob") (group "users")
(supplementary-groups '("wheel" "netdev" "audio" "video"))
(home-directory "/home/bob"))
(user-account (name "mom") (group "users")
(supplementary-groups '("wheel" "netdev" "audio" "video"))
(home-directory "/home/mom"))
%base-user-accounts))
;; This is where we specify system-wide packages.
(packages (cons* nss-certs ;for HTTPS access
gvfs ;for user mounts
wpa-supplicant
%base-packages))
(services (cons*
;; xfce4 desktop, dhcp-client, slim
(service xfce-desktop-service-type)
;(service dhcp-client-service-type)
(service slim-service-type)
(modify-services
;; removing unnecessary services
(remove (lambda (service)
(member (service-kind service)
(list ntp-service-type avahi-service-type
bluetooth-service network-manager-service-type
gdm-service-type)))
%desktop-services) ;end of remove lambda services
;; wpa_supplicant + dhcp-client (above) instead of networkmanager
;(wpa-supplicant-service-type config =>
; (wpa-supplicant-configuration
; (interface "wlp0s77")
; (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))
) ;;end of modify-services
)) ;;end of services
;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss)
;;blacklist ugly sound speaker, blacklist ideapad_laptop for prevent soft blocking wlan
(kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp,bluetooth"))
) ;;end of operating-system
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
2020-03-28 13:01 WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete' znavko
@ 2020-03-29 9:55 ` Gábor Boskovits
0 siblings, 0 replies; 2+ messages in thread
From: Gábor Boskovits @ 2020-03-29 9:55 UTC (permalink / raw)
To: znavko; +Cc: help-guix
Hello,
<znavko@disroot.org> ezt írta (időpont: 2020. márc. 28., Szo, 14:01):
>
> Hello, Guix developers!
>
> Could you advise me what to type in my config.scm for thess warnings:
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> # guix system reconfigure /etc/config.scm
This should be harmless, no action required.
I believe sooner or later this warning will be eliminated.
> ...
> building /gnu/store/92mja1niwsr6mp56nc89zax4in0cn4cf-grub.cfg.drv...
> /gnu/store/i7hdwgvnwgys0rapx75rziy81xx4dgcs-system
> /gnu/store/bqk54842379a23fz05h2kgvnxajvy2nr-grub.cfg
>
> activating system...
> The following derivation will be built:
> /gnu/store/i8lqchhchnw4dj4k0bmdhaahnhd27vma-switch-to-system.scm.drv
> building /gnu/store/i8lqchhchnw4dj4k0bmdhaahnhd27vma-switch-to-system.scm.drv...
> ;;; WARNING: loading compiled file /gnu/store/d0gpf9mrrmm7sm78ysy19xn68qxkjw5q-module-import-compiled/gnu/build/activation.go failed:
> ;;; In procedure load-thunk-from-memory: incompatible bytecode kind
> ;;; compiling /gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/activation.scm
> ;;; WARNING: loading compiled file /gnu/store/d0gpf9mrrmm7sm78ysy19xn68qxkjw5q-module-import-compiled/gnu/build/accounts.go failed:
> ;;; In procedure load-thunk-from-memory: incompatible bytecode kind
> ;;; compiling /gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/accounts.scm
> ;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/accounts.scm.go
> ;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/w1rzci2i5fbgrppysc5iiz92b64rgj0s-module-import/gnu/build/activation.scm.go
> making '/gnu/store/i7hdwgvnwgys0rapx75rziy81xx4dgcs-system' the current system...
> setting up setuid programs in '/run/setuid-programs'...
> populating /etc from /gnu/store/g6dx324c7v8g1k4xn2zy71cjndi5xrqi-etc...
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> The following derivation will be built:
> /gnu/store/bbwy629rk8s016m9cj0ixb653hh20cnr-install-bootloader.scm.drv
> building /gnu/store/bbwy629rk8s016m9cj0ixb653hh20cnr-install-bootloader.scm.drv...
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
> ;;; WARNING: loading compiled file /gnu/store/ir03j1l8q9as11j1xkfyj7q9s0mpyr1z-module-import-compiled/gnu/build/bootloader.go failed:
> ;;; In procedure load-thunk-from-memory: incompatible bytecode kind
> ;;; compiling /gnu/store/bms268qaaq2rfb14yw5v0pj26qxp2bmc-module-import/gnu/build/bootloader.scm
> ;;; compiled /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/bms268qaaq2rfb14yw5v0pj26qxp2bmc-module-import/gnu/build/bootloader.scm.go
> guix system: bootloader successfully installed on '/boot/efi'
> 0.0 MB will be downloaded:
> /gnu/store/1x9xc9nbh0r2shpzib6jd3wallmsh9hr-module-import-compiled
> downloading from https://ci.guix.gnu.org/nar/lzip/1x9xc9nbh0r2shpzib6jd3wallmsh9hr-module-import-compiled...
> module-import-compiled 20KiB 3.2MiB/s 00:00 [##################] 100.0%
>
> The following derivation will be built:
> /gnu/store/a7cs4dfc6dk1qn2kgbbvx4nw054kbm8d-upgrade-shepherd-services.scm.drv
> building /gnu/store/a7cs4dfc6dk1qn2kgbbvx4nw054kbm8d-upgrade-shepherd-services.scm.drv...
> WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
Best regards,
g_bor
--
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-29 9:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-28 13:01 WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete' znavko
2020-03-29 9:55 ` Gábor Boskovits
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).