aboutsummaryrefslogtreecommitdiff
path: root/gnu/compression.scm
diff options
context:
space:
mode:
authorLilah Tascheter <lilah@lunabee.space>2023-01-06 13:09:26 -0600
committerLudovic Courtès <ludo@gnu.org>2023-01-31 23:11:37 +0100
commit99efb55cd4cee39ba5aca259585fcea8c9f52fca (patch)
treece8bd1e5a6e85ccec335e47b87e671b71c2fad23 /gnu/compression.scm
parenta85d6dd4dbe48d131821b315ca392352dfea174d (diff)
downloadguix-99efb55cd4cee39ba5aca259585fcea8c9f52fca.tar.gz
guix-99efb55cd4cee39ba5aca259585fcea8c9f52fca.zip
gnu: castor: Fix compilation.
Castor no longer compiles with latest packaged LibreSSL; latest OpenSSL, however, does compile. * gnu/packages/web.scm (castor)[inputs]: Replace libressl with openssl. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/compression.scm')
0 files changed, 0 insertions, 0 deletions
equent commit. Maxim Cournoyer 2022-11-13services: configuration: Revert to a working ‘guix home’....This reverts commit 543d971ed2a1d9eb934af1f51930741d7cc4e7ef, and its dependent commit 9b21cd2e9a614f1937769caf3917a791b151d841, which appear to have triggered a recent wave of ‘guix home’ regressions involving (services (list (service home-bash-service-type))): In gnu/home/services/shells.scm: 504:7 3 (home-bash-extensions #<<home-bash-configuration> package: #<package bash@5.1.8 gnu/packages/ba…> …) In unknown file: 2 (append #<<location> file: "…" line: 14 column: 12> ()) In ice-9/boot-9.scm: 1685:16 1 (raise-exception _ #:continuable? _) 1685:16 0 (raise-exception _ #:continuable? _) ice-9/boot-9.scm:1685:16: In procedure raise-exception: In procedure append: Wrong type argument in position 1 (expecting empty list): #<<location> file: "…" line: 14 column: 12> I should love to dive in & fix this rather than revert, but urgently need sleep. Tobias Geerinckx-Rice 2022-11-15services: mcron: Add log? and log-format fields to mcron-configuration....* gnu/services/mcron.scm (list-of-gexps?): New predicate. (mcron-configuration): Rewrite using define-configuration. [log?, log-format]: New fields. (mcron-shepherd-services): Invoke mcron with the --log and --log-format arguments when log? is #t, (generate-doc): New procedure. * doc/guix.texi (Scheduled Job Execution): Update doc. (Mcron Home Service): Likewise. * gnu/home/services/mcron.scm: Keep in sync with the above changes to gnu/services/mcron.scm. Maxim Cournoyer