Age | Commit message (Expand) | Author | ||||
---|---|---|---|---|---|---|
2020-09-02 | install: Factorize cow-store procedure....Move the cow-store procedure from the service declaration in (gnu system install) to (gnu build install), so that it can be called from within a different context than Shepherd. * gnu/build/install.scm (mount-cow-store, unmount-cow-store): New procedures. * gnu/system/install.scm (make-cow-store): Remove it, (cow-store-service-type): adapt it accordingly. | Mathieu Othacehe | ||||
2020-09-01 | Revert "system: image: Do not offload image files."...This reverts commit 6a9581741e4ee81226aeb2f1c997df76670a6aab, which is obsoleted by the previous commit. | Maxim Cournoyer | ||||
2020-08-31 | guix: system: Add `--label' option....* guix/scripts/system.scm (%options): Add `--label'. (system-derivation-for-action): Take a #:label key to set volume ID. (perform-action): Take a #:label key. (%default-options): Add default label value. (process-action): Pass label value from command-line to perform-action. * gnu/system/image.scm (image-with-label): New procedure. | Julien Lepiller | ||||
2020-08-31 | vm: Disable caching for writable file system mappings....Fixes <https://bugs.gnu.org/43062>. Reported by elaexuotee@wilsonb.com. * gnu/system/vm.scm (mapping->file-system)[options]: Disable loose caching when WRITABLE? is true. | Ludovic Courtès | ||||
2020-08-28 | system: Remove extra line from 'lightweight-desktop.tmpl'....This is a followup to c7af96871737ffa0e2be879e200573bc60603c8c. * gnu/system/examples/lightweight-desktop.tmpl: Remove extra 'use-package-modules' line. | Ludovic Courtès | ||||
2020-08-26 | system: image: Do not offload image files. | |||||
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 73327e890d..178691cece 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12784,7 +12784,7 @@ library with Eglot instead of Yasnippet.") (define-public emacs-eglot-jl (package (name "emacs-eglot-jl") - (version "2.3.0") + (version "2.4.0") (source (origin (method git-fetch) @@ -12795,7 +12795,7 @@ library with Eglot instead of Yasnippet.") (file-name (git-file-name name version)) (sha256 (base32 - "144q4fj3am165vf1vx2ljlsmpn8vvvs1b95qi3rxlwqskkx0lig3")))) + "1xy6lssg5x8m2d5802in2b5nl5wrcxz4pilw85kk0mc8640kg2ma")))) (build-system emacs-build-system) (arguments (list #:include #~(cons "\\.(jl|toml)$" %default-include))) (propagated-inputs (list emacs-eglot)) |