From 0875aab7f0336b7e50fd714b9a7fb6eafb91c445 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 19 May 2017 22:28:19 +0200 Subject: [PATCH] lang/org: get org-plus-contrib from git repo This is insecure, but necessary if we want Org v9.0 --- modules/lang/org/packages.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/lang/org/packages.el b/modules/lang/org/packages.el index 0eee7ec25..b5695cad9 100644 --- a/modules/lang/org/packages.el +++ b/modules/lang/org/packages.el @@ -1,8 +1,14 @@ ;; -*- no-byte-compile: t; -*- ;;; lang/org/packages.el -(package! org-plus-contrib :pin "org") +;; NOTE This is an insecure source, but unavoidable if we want org 9.0+. +;; orgmode.org offers no secure access to this repo. If this bothers you, +;; comment out this package! block and download org-plus-contrib from +;; orgmode.org. +(package! org-plus-contrib :recipe (:fetcher git :url "http://orgmode.org/org-mode.git")) + (package! org-download) +(package! org-bullets) (package! ob-go) (package! ob-mongo) (package! ob-redis)