;; -*- mode: scheme; -*- ;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video"))) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (targets '("does-not-matter")))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (service guix-service-type)))) action='/guix/log/gnu/packages/prolog.scm'>
path: root/gnu/packages/prolog.scm
AgeCommit message (Expand)Author
2020-01-24gnu: swi-prolog: Update to 8.1.21....* gnu/packages/prolog.scm (swi-prolog): Update to 8.1.21. Brett Gilio
2020-01-04gnu: swi-prolog: Update to 8.1.20....* gnu/packages/prolog.scm (swi-prolog): Update to 8.1.20. Brett Gilio
2020-01-04gnu: swi-prolog: Modify documentation installation....* gnu/packages/prolog.scm (swi-prolog)[arguments]: Remove configuration step for PDF documentation. Brett Gilio
2020-01-04gnu: swi-prolog: Enable tests....* gnu/packages/prolog.scm (swi-prolog)[arguments]: Enable tests and work around tests that cause failure by trying to write to the store, or establishing a network connection. Brett Gilio
2020-01-03gnu: Add swi-prolog....* gnu/packages/prolog.scm (swi-prolog): New variable. Brett Gilio
2020-01-03gnu: gprolog: Use license prefix....* gnu/packages/prolog.scm (gprolog)[license]: Use prefix for list of licenses. Brett Gilio
2020-01-03Revert "gnu: Add swi-prolog."...This reverts commit 3f37f3909712eb7269b6e8184c0d61bfc61b67f9. Brett Gilio
2020-01-03gnu: Add swi-prolog....* gnu/packages/prolog.scm (swi-prolog): New variable. Brett Gilio
2020-01-03gnu: Rename module gprolog to prolog....* gnu/local.mk (GNU_SYSTEM_MODULES): Replace gprolog.scm => prolog.scm. * gnu/packages/{gprolog.scm -> prolog.scm}: Rename file so it is not implementation specific. Brett Gilio