From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: bug#28265: guix system build fails Date: Mon, 28 Aug 2017 21:52:32 +0300 Message-ID: <20170828185232.GH1618@macbook42.flashner.co.il> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="zqjkMoGlbUJ91oFe" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmP9n-0006We-8i for bug-guix@gnu.org; Mon, 28 Aug 2017 14:53:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmP9i-00059y-Bg for bug-guix@gnu.org; Mon, 28 Aug 2017 14:53:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50988) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dmP9i-00059T-7D for bug-guix@gnu.org; Mon, 28 Aug 2017 14:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dmP9h-0007UV-W3 for bug-guix@gnu.org; Mon, 28 Aug 2017 14:53:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmP9M-0006Qx-AJ for bug-guix@gnu.org; Mon, 28 Aug 2017 14:52:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmP9H-0004Ow-Am for bug-guix@gnu.org; Mon, 28 Aug 2017 14:52:40 -0400 Received: from flashner.co.il ([178.62.234.194]:56998) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmP9G-0004NP-W1 for bug-guix@gnu.org; Mon, 28 Aug 2017 14:52:35 -0400 Received: from localhost (46-117-130-79.bb.netvision.net.il [46.117.130.79]) by flashner.co.il (Postfix) with ESMTPSA id CED55401ED for ; Mon, 28 Aug 2017 18:52:33 +0000 (UTC) Content-Disposition: inline List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 28265@debbugs.gnu.org --zqjkMoGlbUJ91oFe Content-Type: multipart/mixed; boundary="ISKrrfpKsPiF35CV" Content-Disposition: inline --ISKrrfpKsPiF35CV Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable efraim@macbook42:~/workspace/guix$ time nice ./pre-inst-env guix system bui= ld ~/lightweight-desktop.scm Backtrace: 11 (primitive-load "/home/efraim/workspace/guix/scripts/gu=E2=80= =A6") In guix/ui.scm: 1331:12 10 (run-guix-command _ . _) In ice-9/boot-9.scm: 837:9 9 (catch _ _ # =E2=80=A6) 837:9 8 (catch _ _ # =E2=80=A6) In guix/scripts/system.scm: 1022:8 7 (_) 905:6 6 (process-action _ _ _) In guix/store.scm: 1441:24 5 (run-with-store _ _ #:guile-for-build _ #:system _) In guix/scripts/system.scm: 637:2 4 (_ _) In gnu/system.scm: 884:4 3 (_ _) In gnu/bootloader/grub.scm: 343:29 2 (grub-configuration-file #< =E2=80= =A6> =E2=80=A6) 207:30 1 (eye-candy #< bootloader: #<=E2=80= =A6> =E2=80=A6) 149:22 0 (grub-background-image #< bo=E2=80= =A6> =E2=80=A6) gnu/bootloader/grub.scm:149:22: In procedure grub-background-image: gnu/bootloader/grub.scm:149:22: In procedure struct_vtable: Wrong type argu= ment in position 1 (expecting struct): 5 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --ISKrrfpKsPiF35CV Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="lightweight-desktop.scm" ;; This is an operating system configuration template ;; for a "desktop" setup without full-blown desktop ;; environments. (use-modules (gnu) (gnu system nss)) (use-service-modules desktop) (use-package-modules bootloaders certs openbox suckless wm) (operating-system (host-name "macbook11") (timezone "Asia/Jerusalem") (locale "en_US.utf8") ;; Use the UEFI variant of GRUB with the EFI System ;; Partition mounted on /boot/efi. (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi"))) ;; Assume the target root file system is labelled "my-root". (file-systems (cons* (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) (file-system ;; Specify partition here since FAT ;; labels are currently unsupported. (device "/dev/sda1") (mount-point "/boot/efi") (type "vfat")) %base-file-systems)) (swap-devices '("/dev/sda2")) (users (cons (user-account (name "efraim") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/efraim")) %base-user-accounts)) ;; Add a bunch of window managers; we can choose one at ;; the log-in screen with F1. (packages (cons* openbox i3-wm i3status dmenu ;window managers nss-certs ;for HTTPS access %base-packages)) ;; Use the "desktop" services, which include the X11 ;; log-in service, networking with Wicd, and more. (services %desktop-services) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) --ISKrrfpKsPiF35CV-- --zqjkMoGlbUJ91oFe Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAlmkZnAACgkQQarn3Mo9 g1HqphAAlcvjGooxgMh0IhamQwWEr/b3uqFxgOOusAH2D1DAAH5pr3mzpkB4ofSZ +cw9kWfdv/KF7wcgn36d272jvLqHD9+XHbScXN7iuHF+Idylpf+JtDt2xTFlMJdf DSvwV4yfTlsaKE5BJ4uHYC2b8Xgx81OuBsp/ovT5r/s4rUpaZeUVE5QGvPlfOJpI /9TAymIGlGcFkC8WP+0IZPNSSuftg2IjPTUigCH/hAL2Ff2OflgVIPf33ux2YBSn ZlqaoItAepNVYbHvbJ6ExlaN6UfMsxepn8EBICWam/f7BpPNUc/5M/CuQ6SNeKP9 87u5YEivXoq1pYq2FLyfG6WfpRmlJ4Xye+l/el80/7weTrbyKB66PqwT2ybI3qEL 6w2Zqn7oVsjsuvpo6nz2VJhm04aPrCebREmXqvQPdXHeTP694T34R7H9XzBhwNe5 ml7iRoDLQchmqg1EPzk9iSVopxMN8+2yn1fNDKsMM8+pctQ6StlKV+wnpahLr+Is 1S51WTiPTtqYDECI57zHoBJPOvX7b6RBLc31fxa2B7PrvIeypoU55xPYrA5LQSNb S9HEtDcS2LX86CXTJYwC9wSSdINo6CvEssiOwdYYNrGgpjgDUG7KhlaqoDhCOZPx q59TXNiNI8vpL4J9RsvkgDIE37i8Eu4GKufkQulOFutEsrzF9C8= =TQuD -----END PGP SIGNATURE----- --zqjkMoGlbUJ91oFe--