unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* emacs-importmagic help python <3 elisp
@ 2022-07-09  6:50 jgart
  2022-07-09  8:47 ` Liliana Marie Prikler
  0 siblings, 1 reply; 4+ messages in thread
From: jgart @ 2022-07-09  6:50 UTC (permalink / raw)
  To: Guix Devel

Hi Guixers,

I'm working on this package and I could use some guidance:

```
(define-public emacs-importmagic
  (let ((commit "701dfcca5f3ab42be0f26a8d381d7116c79be850")
        (revision "0"))
    (package
      (name "emacs-importmagic")
      (version (git-version "1.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri
          (git-reference
           (url "https://github.com/anachronic/importmagic.el")
           (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "035830aizamh4c8hpnmfrbz9v9gy23d3nx0dv366l3q8mrh36l44"))))
      (build-system emacs-build-system)
      (arguments
       (list
        #:imported-modules `(,@%emacs-build-system-modules
                             (guix build python-build-system))
        #:modules '((guix build emacs-build-system)
                    ((guix build python-build-system) #:prefix python:)
                    (guix build emacs-utils)
                    (guix build utils))
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'python:install 'python:wrap
              (assoc-ref python:%standard-phases 'wrap)))))
```

https://github.com/anachronic/importmagic.el

importmagic.el has python files but the current package I have above
doesn't copy them to the store.

How should I achieve this in this context? Write a phase and manually copy them?

all best,

jgart


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-09 17:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-09  6:50 emacs-importmagic help python <3 elisp jgart
2022-07-09  8:47 ` Liliana Marie Prikler
2022-07-09 16:57   ` jgart
2022-07-09 17:46     ` Liliana Marie Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).