unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Thorsten Wilms <t_w_@freenet.de>
To: help-guix@gnu.org
Subject: Emacs Impatient Mode File Access
Date: Sat, 26 Nov 2022 12:15:28 +0100	[thread overview]
Message-ID: <20221126121528.d158e7a2f9eaf04aa713bcbc@freenet.de> (raw)

Hi!

I wrote a package for https://github.com/skeeto/impatient-mode
It works to the point where I get a list of “Public Buffers” with one
item as expected on http://localhost:8080/imp/, but when I click
“test.html”, I get:
error: (file-missing Opening input file No such file or
directory /gnu/store/dszh53pr1a76ff6jqzhxs7krkmgdic2m-emacs-impatient-20200723.2117/share/emacs/site-lisp/impatient-20200723.2117/index.html)

Now what to do?

The package:
---
(define-module (emacs-impatient)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system emacs)
  #:use-module (gnu packages emacs-xyz))

(define-public emacs-impatient
  (package
    (name "emacs-impatient")
    (version "20200723.2117")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://melpa.org/packages/impatient-mode-"
                           version ".tar"))
       (sha256 (base32
"03c1dfygjlb5pzaafapv0y2mvcjlq9lhavbdqqwjv203lbs8fc66"))))
(build-system emacs-build-system) (propagated-inputs
     (list emacs-simple-httpd
	   emacs-htmlize))
     (home-page "https://github.com/skeeto/impatient-mode")
     (synopsis "Emacs mode for live-viewing changes to HTML in a
browser") (description
      "See the effect of your HTML as you type it.")
     (license license:public-domain)))
---

Thanks!


             reply	other threads:[~2022-11-26 11:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-26 11:15 Thorsten Wilms [this message]
2022-11-27  9:17 ` Emacs Impatient Mode File Access Thorsten Wilms

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221126121528.d158e7a2f9eaf04aa713bcbc@freenet.de \
    --to=t_w_@freenet.de \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).