guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-importmagic help python <3 elisp


From: jgart
Subject: emacs-importmagic help python <3 elisp
Date: Sat, 9 Jul 2022 01:50:49 -0500

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]