;; -*-scheme-*- ;; This is an operating system configuration template ;; for a "bare bones" setup, with no X11 display server. ;; To build a disk image for a virtual machine, do ;; ;; ./pre-inst-env guix system image --target=i586-pc-gnu \ ;; gnu/system/examples/bare-hurd.tmpl ;; ;; You may run it like so ;; ;; guix environment --ad-hoc qemu -- qemu-system-i386 -enable-kvm -m 512M \ ;; -device rtl8139,netdev=net0 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:10022-:2222 \ ;; -snapshot -hda ;; ;; and use it like ;; ;; ssh -p 10022 root@localhost ;; guix build -e '(@@ (gnu packages commencement) gnu-make-boot0)' ;; ;; or even (if you use --image-size=3G) ;; ;; guix build hello (use-modules (gnu) (gnu system hurd) (guix utils)) (use-service-modules ssh) (use-package-modules ssh) (define %hurd-os (operating-system (inherit %hurd-default-operating-system) (bootloader (bootloader-configuration (bootloader grub-minimal-bootloader) (targets '("/dev/sdX")))) (file-systems (cons (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext2")) %base-file-systems)) (host-name "guixygnu") (timezone "Europe/Amsterdam") (users (cons (user-account (name "guix") (comment "Anonymous Hurd Hacker") (group "users") (supplementary-groups '("wheel"))) %base-user-accounts)) (packages (cons openssh-sans-x %base-packages/hurd)) (services (cons (service openssh-service-type (openssh-configuration (openssh openssh-sans-x) (port-number 2222) (permit-root-login #t) (allow-empty-passwords? #t) (password-authentication? #t))) %base-services/hurd)))) %hurd-os 14600'>Collapse)Author ref='/guix/log/tests?id=e7889236004be69838d2b9a6a08648971ca0351b'>tests/import-utils.scm
AgeCommit message (Expand)Author
2023-08-28import-utils: Do not include punctuation when wrapping in @code{}....Ricardo Wurmus
2023-07-19import/utils: beautify-description: Wrap class names in @code{...}....Ricardo Wurmus
2023-04-07packages: Remove 'origin-sha256' procedure....Bruno Victal
2022-12-31tests: import-utils: Ignore extra keyword arguments....Ricardo Wurmus
2022-11-18import/utils: spdx-string->license: Support '+' operator....Philip McGrath
2022-11-18import/utils: spdx-string->license: Match case-insensitively....Philip McGrath
2022-10-05tests: Add new test cases for beautify-description....Ricardo Wurmus
2022-09-29import/utils: alist->package: Include properties....itd
2021-09-01import: utils: Skip not found packages....Sarah Morgensen
2020-12-27import/utils: alist->package: Handle SPDX license names only as fallback....Ricardo Wurmus
2020-12-02import: utils: 'recursive-import' accepts an optional version parameter....Martin Becze