;; -*-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) (target "/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 log/?id=79765b40fd9b4921b531284c589ace8a2c89a6ea'>root/gnu/packages/samba.scm
AgeCommit message (Expand)Author
2023-11-25gnu: Add ppp-2.4.9....* gnu/packages/samba.scm (ppp-2.4.9): New variable. Change-Id: I496016429ec4a8289b2a4ab51caa9245b914b4a5 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Benjamin
2023-10-15gnu: ppp: Update to 2.5.0....* gnu/packages/samba.scm (ppp): Update to 2.5.0. [arguments]: Move CC from #:make-flags to #:configure-flags where it belongs. Remind ./configure where openssl lives. Build verbosely. Remove obsolete 'patch-Makefile phase, and delete autogen.sh. [native-inputs]: Add autoconf, automake, and libtool. Tobias Geerinckx-Rice
2023-07-16gnu: wsdd: Fix cross-‘compilation’....The copy-build-system appears unsuitable for scripts. * gnu/packages/samba.scm (wsdd)[build-system]: Switch to the GNU build system. [arguments]: Replace #:install-plan with custom #:phases. Tobias Geerinckx-Rice
2023-07-16gnu: wsdd: Remove input labels....* gnu/packages/samba.scm (wsdd)[inputs]: Remove input labels. Tobias Geerinckx-Rice
2023-07-16gnu: wsdd: Update to 0.7.1....* gnu/packages/samba.scm (wsdd): Update to 0.7.1. Tobias Geerinckx-Rice
2023-04-19gnu: samba: Update to 4.18.1 [security fixes]....Fixes CVE-2023-0922 and CVE-2023-0614. * gnu/packages/samba.scm (samba): Update to 4.18.1. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> John Kehayias
2023-04-19gnu: samba: Make the python-cryptography input conditional....* gnu/packages/samba.scm (samba/pinned) [arguments]: Conditionally enable self tests in configure phase. [native-inputs]: Conditionally add python-cryptography. Reported-by: John Kehayias <john.kehayias@protonmail.com> Maxim Cournoyer