;; 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) (target "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)))) ght' method='get' action='/guix/log/gnu/packages/pcre.scm'>
path: root/gnu/packages/pcre.scm
AgeCommit message (Expand)Author
2018-01-19Merge branch 'master' into core-updatesMark H Weaver
2018-01-13gnu: pcre: Use HTTPS for home pages....Tobias Geerinckx-Rice
2017-10-01gnu: pcre: Update to 8.41....Efraim Flashner
2017-07-23Merge branch 'master' into core-updatesLeo Famulari
2017-07-20gnu: pcre: Update replacement to 8.41 [fixes CVE-2017-{7244,7245,7246}]....Leo Famulari
2017-07-03packages: Mark 'replacement' as an "innate" field....Ludovic Courtès
2017-05-24Merge branch 'master' into core-updatesRicardo Wurmus
2017-05-07gnu: pcre2: Fix build configuration for pcre2....Leo Famulari
2017-05-07gnu: pcre2: Fix CVE-2017-8786....Leo Famulari
2017-04-10gnu: pcre: Patch CVE-2017-7186....Ludovic Courtès
2017-04-10gnu: pcre2: Patch CVE-2017-7186....Ludovic Courtès
2017-03-09Merge branch 'master' into core-updatesLudovic Courtès
2017-03-07gnu: pcre2: Update to 10.23....Marius Bakke
2017-01-23gnu: pcre: Update to 8.40....Leo Famulari