diff --git a/rekahsoft-gnu/packages/emacs-xyz.scm b/rekahsoft-gnu/packages/emacs-xyz.scm index 2270cca..00d0bbb 100644 --- a/rekahsoft-gnu/packages/emacs-xyz.scm +++ b/rekahsoft-gnu/packages/emacs-xyz.scm @@ -21,6 +21,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) + #:use-module (guix build-system copy) #:use-module (guix build-system gnu) #:use-module (guix build-system emacs) #:use-module (guix utils) @@ -799,3 +800,31 @@ dashboard!") (description "Add graphical view of agenda to agenda buffer.") (license license:gpl3+))) + +(define-public emacs-org-html-themes + (let ((commit "20f84182239a537f4c6b533eb65daa2d342428dd") + (revision "1")) + (package + (name "emacs-org-html-themes") + (version (git-version "1.2.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fniessen/org-html-themes.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1jzkfsq4i4w2cgnlaw8cxa0b33rf8gy82bkbvl52hzlzhp68krgv")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + '(("src" "var/org-themes/org-html-themes/src") + ("org/" "var/org-themes/org-html-themes" + #:include-regexp ("-local\\.setup$"))))) + (home-page + "https://github.com/fniessen/org-html-themes") + (synopsis "Set of org html export themes") + (description + "Export Org mode files into awesome HTML in 2 minutes.") + (license license:gpl3+))))