me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-org-cv.

* gnu/packages/emacs-xyz.scm (emacs-org-cv): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Vinicius Monego 2021-07-20 17:36:31 +00:00 committed by Nicolas Goaziou
parent 8cfd9ef831
commit 157f2f7f03
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 27 additions and 0 deletions

View File

@ -7879,6 +7879,33 @@ Sublime Text. It features a dark blue/gray background and soft blue, green,
orange and red as accent colors.")
(license license:expat)))) ; MIT license
(define-public emacs-org-cv
;; There are no tagged releases.
(let ((commit "24bcd82348d441d95c2c80fb8ef8b5d6d4b80d95")
(revision "0"))
(package
(name "emacs-org-cv")
(version (git-version "0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/Titan-C/org-cv")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0zcnbxvlwi4d6vzsm3ag7z74qphdigmx303gppb9d614jnsfsdg2"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-ox-hugo" ,emacs-ox-hugo)))
(home-page "https://titan-c.gitlab.io/org-cv/")
(synopsis "Collection of export backends for Org to generate a CV")
(description
"This project exports an Org file with reasonably structured items into
a LaTeX file, which compiles into a nice CV. In the same spirit, the Org file
may export to Markdown so that it can be used for a web based CV.")
(license license:gpl3+))))
(define-public emacs-2048-game
(package
(name "emacs-2048-game")