gnu: emacs-org-pandoc-import: Update to 1.0-0.db308f1.

* gnu/packages/emacs-xyz.scm (emacs-org-pandoc-import): Update to 1.0-0.db308f1.

Last stable 1.0 version dates back from 3 years ago.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: Ic0da2b7956695f75274aab14a13dbfca919a4999
This commit is contained in:
Cayetano Santos 2024-03-09 12:02:58 +01:00 committed by Nicolas Goaziou
parent f0d5d50c2c
commit 8bd8484e6d
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -11287,18 +11287,20 @@ Features degrade gracefully when viewed from terminal.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-org-pandoc-import (define-public emacs-org-pandoc-import
(let ((commit "db308f1a05be26ce5b287633637ce554599b1377")
(revision "0"))
(package (package
(name "emacs-org-pandoc-import") (name "emacs-org-pandoc-import")
(version "1.0") (version (git-version "1.0" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/tecosaur/org-pandoc-import/") (url "https://github.com/tecosaur/org-pandoc-import/")
(commit (string-append "v" version)))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "00z9bpm975mlyqlxbyib3j547br6kvcam04b70qkmq22vh8yf341")))) (base32 "19z1qaairhpj8kyyqwx8yf53j3f03a9a1z1jfa348qmncnra5jmh"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
`(#:include `(#:include
@ -11309,7 +11311,8 @@ Features degrade gracefully when viewed from terminal.")
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(let ((pandoc (assoc-ref inputs "pandoc"))) (let ((pandoc (assoc-ref inputs "pandoc")))
(substitute* "org-pandoc-import.el" (substitute* "org-pandoc-import.el"
(("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\""))))))))) (("\"pandoc\"")
(string-append "\"" pandoc "/bin/pandoc\"")))))))))
(inputs (inputs
(list pandoc)) (list pandoc))
(home-page "https://github.com/tecosaur/org-pandoc-import/") (home-page "https://github.com/tecosaur/org-pandoc-import/")
@ -11321,7 +11324,7 @@ convert supported non-Org files to an Org file with Pandoc.
It can also intercept requests for non-Org files it knows it can convert, It can also intercept requests for non-Org files it knows it can convert,
convert the file to a temporary Org file, and open this file instead. On convert the file to a temporary Org file, and open this file instead. On
save, it exports back to the original non-Org file.") save, it exports back to the original non-Org file.")
(license license:gpl3+))) (license license:gpl3+))))
(define-public emacs-org-pomodoro (define-public emacs-org-pomodoro
;; Last release version was from 2016. ;; Last release version was from 2016.