diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-10-16 16:13:15 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-10-16 16:13:34 +0200 |
commit | ccc3827e26bc7f986b946c93cebeed7d78cc17d4 (patch) | |
tree | 53af2447a09d233fa93e4533cb39eab5cfe70340 | |
parent | ff20d3928dcd6c00be1e8e6c87fd6bcd11d48fd0 (diff) | |
download | guix-ccc3827e26bc7f986b946c93cebeed7d78cc17d4.tar guix-ccc3827e26bc7f986b946c93cebeed7d78cc17d4.tar.gz |
gnu: emacs-org-contrib: Update to 0.3.
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 0.3.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 17c525138d..efeac83477 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12291,7 +12291,7 @@ programming and reproducible research.") (define-public emacs-org-contrib (package (name "emacs-org-contrib") - (version "0.2") + (version "0.3") (source (origin (method git-fetch) @@ -12300,9 +12300,9 @@ programming and reproducible research.") (commit (string-append "release_" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0dn6arrmm0rrm2vi94fj5fjb030ggxf8cvpmi68wr0fh8xm5l1sh")) + (base32 "17aca4mc3gbdh6nhlcaa5ymh1yy76nwysrvy9sfcqkzvd5lgagzc")) ;; XXX: ob-sclang.el is packaged separately to avoid the dependency on - ;; SuperCollider and qtwebengine. This will be unnecessary in 0.3+ + ;; SuperCollider and qtwebengine. This will be unnecessary in 0.4+ ;; release as the file is going to be removed from the repository. (modules '((guix build utils))) (snippet '(begin (delete-file "lisp/ob-sclang.el"))))) @@ -12314,7 +12314,7 @@ programming and reproducible research.") (lambda _ (chdir "lisp")))))) (propagated-inputs - `(("arduino-mode" ,emacs-arduino-mode) ;XXX: remove after 0.3+ release. + `(("arduino-mode" ,emacs-arduino-mode) ;XXX: remove after 0.4+ release. ("cider" ,emacs-cider) ("org" ,emacs-org))) (home-page "https://git.sr.ht/~bzg/org-contrib") |