Last active
August 13, 2022 20:42
-
-
Save kristianlm/b3f12ed118407769087123fd59a0eeae to your computer and use it in GitHub Desktop.
can't build etc-polkit-1 on guix @ a8bd13c3993810428fc2e207791465bd8b297a17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-modules (gnu) | |
(gnu packages shells) | |
(gnu packages ssh) | |
(gnu services pm) | |
((gnu services cups) #:select (cups-service-type cups-configuration)) | |
(gnu packages cups) | |
(gnu services sound) | |
(gnu packages wm) | |
(gnu services virtualization) | |
((gnu packages gnustep) #:select (windowmaker)) | |
((gnu packages rust-apps) #:select (i3status-rust)) | |
(guix packages) | |
(srfi srfi-1) | |
((guix utils) #:select (substitute-keyword-arguments))) | |
(use-service-modules networking ssh xorg dbus desktop sddm) | |
(define my-packages | |
(map specification->package | |
`("file" "netcat" | |
"pv" "bat" | |
"git" "tmux" "jq" | |
"nss-certs"))) | |
(define my-x-packages | |
(map specification->package | |
`("xinit" "xrandr" | |
"i3-wm" "i3blocks" "xst" "xrdb" "dmenu" "polybar"))) | |
(operating-system | |
(kernel-arguments | |
(cons* "spectre_v2=eibrs,retpoline" ;; mitigate spectre v2 eBPF vulnerability | |
%default-kernel-arguments)) | |
(locale "en_US.utf8") | |
(timezone "Europe/Oslo") | |
(keyboard-layout (keyboard-layout "us" "mac" #:options '("ctrl:nocaps"))) | |
(host-name "pal") | |
(users (cons* (user-account | |
(name "user") | |
(comment "John Doe") | |
(group "users") | |
(home-directory "/home/user") | |
(shell (file-append fish "/bin/fish")) | |
(supplementary-groups | |
'("wheel" "netdev" "audio" "video" "disk" "floppy" "cdrom" "kvm"))) | |
%base-user-accounts)) | |
(sudoers-file (plain-file "sudoers" "\ | |
root ALL=(ALL) ALL | |
%wheel ALL=NOPASSWD: ALL | |
")) | |
(packages (append | |
my-packages | |
my-x-packages | |
%base-packages)) | |
(services (cons* | |
(service openssh-service-type | |
(openssh-configuration | |
(openssh openssh-sans-x) | |
(password-authentication? #false))) | |
(service sddm-service-type | |
(sddm-configuration | |
(auto-login-user "guest") | |
(auto-login-session "i3") | |
(xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout))))) | |
(modify-services %desktop-services | |
(delete gdm-service-type)))) | |
(mapped-devices (list | |
(mapped-device | |
(source "vg0") | |
(targets (list "vg0-s0")) | |
(type lvm-device-mapping)) )) | |
(file-systems | |
(cons* (file-system | |
(mount-point "/") | |
(device "/dev/vg0/s0") | |
(dependencies mapped-devices) | |
(type "ext4")) | |
(file-system | |
(mount-point "/boot/efi") | |
(device (uuid "73F7-8562" 'fat)) | |
(type "vfat")) | |
(file-system | |
(mount-point "/raid") | |
(device (uuid "e2150870-2635-4a01-bcb2-d27dc48a6d9f" 'btrfs)) | |
(options "subvol=@bak") | |
(create-mount-point? #t) | |
(type "btrfs")) | |
%base-file-systems)) | |
(bootloader | |
(bootloader-configuration | |
(bootloader grub-efi-bootloader) | |
(targets `("/boot/efi")) | |
(keyboard-layout keyboard-layout))) | |
;; allow resolution of '.local' host names with mDNS | |
(name-service-switch %mdns-host-lookup-nss)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
me@pal ~ ➤ guix describe | |
Generation 3 Aug 13 2022 21:54:13 (current) | |
guix a8bd13c | |
repository URL: https://git.savannah.gnu.org/git/guix.git | |
branch: master | |
commit: a8bd13c3993810428fc2e207791465bd8b297a17 | |
me@pal ~ ➤ guix system image /tmp/config.scm | |
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% | |
50.2 MB will be downloaded | |
qemu-minimal-6.2.0-doc 3.3MiB 6.5MiB/s 00:01 [##################] 100.0% | |
cdrkit-libre-1.1.11 686KiB 6.9MiB/s 00:00 [##################] 100.0% | |
cpio-2.13 236KiB 999KiB/s 00:00 [##################] 100.0% | |
dosfstools-4.2 127KiB 4.6MiB/s 00:00 [##################] 100.0% | |
fakeroot-1.28 79KiB 4.4MiB/s 00:00 [##################] 100.0% | |
genext2fs-1.5.0 34KiB 4.3MiB/s 00:00 [##################] 100.0% | |
grub-efi32-2.06 3.5MiB 5.5MiB/s 00:01 [##################] 100.0% | |
liburing-2.2 132KiB 5.8MiB/s 00:00 [##################] 100.0% | |
lzo-2.10 94KiB 2.2MiB/s 00:00 [##################] 100.0% | |
ncurses-with-tinfo-6.2.20210619 704KiB 1.7MiB/s 00:00 [##################] 100.0% | |
mtd-utils-2.1.4 415KiB 3.5MiB/s 00:00 [##################] 100.0% | |
qemu-minimal-6.2.0 22.9MiB 4.5MiB/s 00:05 [##################] 100.0% | |
squashfs-tools-4.5 154KiB 10.4MiB/s 00:00 [##################] 100.0% | |
u-boot-tools-2022.04 169KiB 2.9MiB/s 00:00 [##################] 100.0% | |
genimage-15-1.ec44ae0 38KiB 4.9MiB/s 00:00 [##################] 100.0% | |
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0% | |
substitute: updating substitutes from 'https://bordeaux.guix.gnu.org'... 100.0% | |
The following derivations will be built: | |
/gnu/store/fq3wxkpnj4pw41x71c5gbyimdyj5dqkn-disk-image.drv | |
/gnu/store/8qa5f797cbcr6v43q1cl35fgnl31yvyq-genimage.cfg.drv | |
/gnu/store/6wapzr4hfxzv46wfqsj3j601pp7jni7j-partition.img.drv | |
/gnu/store/a28br8391sk29lk6kj6j1h3zbk5vqcb9-module-import.drv | |
/gnu/store/g8z4qs4rw4gs5w3r7wnqci51kj30glly-system.drv | |
/gnu/store/6p1xqaryacmgm2q5ij46kksp63zbbjxv-boot.drv | |
/gnu/store/a8rf4h6fk3css4b858x73hxz4np2anhn-activate.scm.drv | |
/gnu/store/2aj5qnkklzs6zp92dikc4sldak24cd4g-activate-service.scm.drv | |
/gnu/store/ybq50n1yai0zz1ljzfcycyriq027sayy-etc.drv | |
/gnu/store/9fzxd5a4b61pkswprlv526dk99hnz7bs-etc-polkit-1.drv | |
/gnu/store/aqy555y2hgyg3p6hi1lan9phbd671jrg-sddm.conf.drv | |
/gnu/store/p8bj4ggzgy3sc96lgc6lb1m2w1hv7y8j-startx.drv | |
/gnu/store/32mmvg4dlkpg3l0yfvl4cnwvp4xr64fh-X-wrapper.drv | |
/gnu/store/0lmpzxrmi8xv025wwvff2b1z1zaha197-xorg.conf.d.drv | |
/gnu/store/z6id360ddxx5ll4jb1ya0b8ij5s9bgxk-xserver.conf.drv | |
/gnu/store/wsvagw2c78r2hj49l8lxnhfgvhhcjm0j-udev.drv | |
/gnu/store/15mplkjp1sy9icr1mdw6hji6fmf1axg5-udev-rules.drv | |
/gnu/store/affjfbqvym5wy23ydavwisb8vpfvp8pz-shepherd.conf.drv | |
/gnu/store/azghnm91bpzh01yhxiwjc90lla25ygdw-shepherd-user-homes.go.drv | |
/gnu/store/6yxjh3q5v5fkbbvsz9wj2ngpx9p1gyc1-shepherd-user-homes.scm.drv | |
/gnu/store/h2vi77qj076kxf9s9fnyswimz2cdr5sv-shepherd-device-mapping-vg0-s0.go.drv | |
/gnu/store/1q4hlvkhh3jqfr25y1kjy1qfr952gdlg-shepherd-device-mapping-vg0-s0.scm.drv | |
/gnu/store/h4mrjq7a8870ablsmnh6hq90g5sa320n-shepherd-user-file-systems.go.drv | |
/gnu/store/m5wg6bz08c5dvdx5ihrsx8x3702w6zwz-shepherd-user-file-systems.scm.drv | |
/gnu/store/z9m944zdd7wcdh6iv45k00s60gr90326-shepherd-file-systems.go.drv | |
/gnu/store/icrqz4xncm0pcdxicbixfi8hh3iv421h-shepherd-file-systems.scm.drv | |
/gnu/store/7dyqvw9fssfw2a0sny3rq3dgfsdhl4qi-profile.drv | |
/gnu/store/q7yzk11sqsj6gw859shq3wds6k6pns6x-parameters.drv | |
/gnu/store/v74zg694cwvjj424296nizw40ys9bkdb-raw-initrd.drv | |
/gnu/store/s3qjilj352hh6wsdwi9n17c5hd32i4ai-init.drv | |
/gnu/store/ri5rhfagb5dda8pmxq7x4vvsxbi3bw9d-module-import-compiled.drv | |
/gnu/store/w52pjkk6fa6k96r9lalphmh3hwpf6gy9-grub.cfg.drv | |
/gnu/store/mkv5bvlvvpi811hnzksbd628v38ghjp4-partition.img.drv | |
building /gnu/store/a28br8391sk29lk6kj6j1h3zbk5vqcb9-module-import.drv... | |
building /gnu/store/9fzxd5a4b61pkswprlv526dk99hnz7bs-etc-polkit-1.drv... | |
|builder for `/gnu/store/9fzxd5a4b61pkswprlv526dk99hnz7bs-etc-polkit-1.drv' failed with exit code 1 | |
build of /gnu/store/9fzxd5a4b61pkswprlv526dk99hnz7bs-etc-polkit-1.drv failed | |
View build log at '/var/log/guix/drvs/9f/zxd5a4b61pkswprlv526dk99hnz7bs-etc-polkit-1.drv.gz'. | |
cannot build derivation `/gnu/store/ybq50n1yai0zz1ljzfcycyriq027sayy-etc.drv': 1 dependencies couldn't be built | |
applying 1 graft for fakeroot-1.28 ... | |
cannot build derivation `/gnu/store/g8z4qs4rw4gs5w3r7wnqci51kj30glly-system.drv': 1 dependencies couldn't be built | |
building /gnu/store/ri5rhfagb5dda8pmxq7x4vvsxbi3bw9d-module-import-compiled.drv... | |
cannot build derivation `/gnu/store/6wapzr4hfxzv46wfqsj3j601pp7jni7j-partition.img.drv': 1 dependencies couldn't be built | |
cannot build derivation `/gnu/store/mkv5bvlvvpi811hnzksbd628v38ghjp4-partition.img.drv': 1 dependencies couldn't be built | |
cannot build derivation `/gnu/store/8qa5f797cbcr6v43q1cl35fgnl31yvyq-genimage.cfg.drv': 1 dependencies couldn't be built | |
cannot build derivation `/gnu/store/fq3wxkpnj4pw41x71c5gbyimdyj5dqkn-disk-image.drv': 1 dependencies couldn't be built | |
guix system: error: build of `/gnu/store/fq3wxkpnj4pw41x71c5gbyimdyj5dqkn-disk-image.drv' failed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Backtrace: | |
5 (primitive-load "/gnu/store/r2snad1xyji42ifm8dksmb9a6qh?") | |
In guix/build/union.scm: | |
183:6 4 (union-of-directories "/gnu/store/8z1g95l38f2mf0g7vzf1?" ?) | |
In srfi/srfi-1.scm: | |
634:9 3 (for-each #<procedure 7ffff5f2e940 at guix/build/union?> ?) | |
In guix/build/union.scm: | |
185:28 2 (_ "/gnu/store/254la887jsdrpym642d289zkcaahqpp0-cups-pk?") | |
56:13 1 (files-in-directory "/gnu/store/254la887jsdrpym642d289z?") | |
In unknown file: | |
0 (opendir "/gnu/store/254la887jsdrpym642d289zkcaahqpp0-c?") | |
ERROR: In procedure opendir: | |
In procedure opendir: No such file or directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment