Move ob-racket to lang/org & cleanup

+ Remove redundant ob-crystal block
+ Move ob-ipython into separate section
+ Move ob-racket from lang/racket
This commit is contained in:
Henrik Lissner 2018-07-29 17:56:29 +02:00
parent 884173112c
commit 66056e7a5d
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 5 additions and 7 deletions

View file

@ -18,6 +18,9 @@
(package! ob-sql-mode) (package! ob-sql-mode)
(package! ob-translate) (package! ob-translate)
(when (featurep! +ipython)
(package! ob-ipython))
(when (featurep! :lang nim) (when (featurep! :lang nim)
(package! ob-nim)) (package! ob-nim))
(when (featurep! :lang crystal) (when (featurep! :lang crystal)
@ -28,10 +31,8 @@
(package! ob-rust)) (package! ob-rust))
(when (featurep! :lang rest) (when (featurep! :lang rest)
(package! ob-restclient)) (package! ob-restclient))
(when (featurep! :lang crystal) (when (featurep! :lang racket)
(package! ob-crystal)) (package! ob-racket :recipe (:fetcher github :repo "DEADB17/ob-racket"))))
(when (featurep! +ipython)
(package! ob-ipython)))
(when (featurep! +export) (when (featurep! +export)
(package! ox-pandoc) (package! ox-pandoc)

View file

@ -2,6 +2,3 @@
;;; lang/racket/packages.el ;;; lang/racket/packages.el
(package! racket-mode) (package! racket-mode)
(when (featurep! :lang org +babel)
(package! ob-racket :recipe (:fetcher github :repo "DEADB17/ob-racket")))