org-vcard.scm 976 B

123456789101112131415161718192021222324252627282930313233
  1. (define-module (emacs org-vcard)
  2. #:use-module ((guix licenses) #:prefix license:)
  3. #:use-module (guix build-system emacs)
  4. #:use-module (gnu packages emacs-xyz)
  5. #:use-module (guix packages)
  6. #:use-module (guix download))
  7. (define-public emacs-org-vcard
  8. (package
  9. (name "emacs-org-vcard")
  10. (version "20191130.703")
  11. (source
  12. (origin
  13. (method url-fetch)
  14. (uri (string-append
  15. "https://melpa.org/packages/org-vcard-"
  16. version
  17. ".tar"))
  18. (sha256
  19. (base32
  20. "1rvh6968qg08dvcy9a7wbz5aibl54zfrxhznw0nrrl9hsvkbbazi"))))
  21. (build-system emacs-build-system)
  22. (arguments
  23. `(#:include '("\\.el$" "^styles/")))
  24. (home-page
  25. "https://github.com/flexibeast/org-vcard")
  26. (synopsis
  27. "org-mode support for vCard export and import.")
  28. (description
  29. "`org-vcard' is a package for exporting and importing vCards from
  30. within GNU Emacs' Org mode.")
  31. (license license:gpl3+)))