~ruther/guix-local

59198a07949c7540a1a20644e8ccf7fe8eae5ccd — Nicolas Goaziou 1 year, 2 months ago 1a84b2d
gnu: emacs-mistty: Update to 1.3.

* gnu/packages/emacs-xyz.scm (emacs-mistty): Update to 1.3.

Change-Id: I4d65d9b58dd8c3ee373fd7c4feda71faedfbdb1c
1 files changed, 27 insertions(+), 29 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +27 -29
@@ 4555,36 4555,34 @@ programs such as @code{vi}, @code{top}, @code{htop} or even @code{emacs
    (license license:gpl3+)))

(define-public emacs-mistty
  (let ((revision "0")
        (commit "6284c0f6529bcce57d183e20765052c603846115"))
    (package
      (name "emacs-mistty")
      (version (git-version "1.1" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/szermatt/mistty")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1159dy63dq7kyh06q9kfvq6x4bx59w9g1slq2m3xvx2ngaiydf97"))))
      (build-system emacs-build-system)
      (arguments
       (list
        #:phases #~(modify-phases %standard-phases
                     (add-before 'patch-el-files 'replace-bash-path
                       (lambda* (#:key inputs #:allow-other-keys)
                         (substitute* "mistty-term.el"
                           (("/bin/bash")
                            (search-input-file inputs "bin/bash"))))))))
      (inputs (list bash))
      (home-page "https://github.com/szermatt/mistty")
      (synopsis "Emacs terminal major mode based on Term")
      (description
       "This package defines a major mode that runs a shell inside of
  (package
    (name "emacs-mistty")
    (version "1.3")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/szermatt/mistty")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0wyhv6skml0p9lajhmfbwc8wm3r1107kgwyvh31dyi9m4zhc52zh"))))
    (build-system emacs-build-system)
    (arguments
     (list
      #:phases #~(modify-phases %standard-phases
                   (add-before 'patch-el-files 'replace-bash-path
                     (lambda* (#:key inputs #:allow-other-keys)
                       (substitute* "mistty-term.el"
                         (("/bin/bash")
                          (search-input-file inputs "bin/bash"))))))))
    (inputs (list bash))
    (home-page "https://github.com/szermatt/mistty")
    (synopsis "Emacs terminal major mode based on Term")
    (description
     "This package defines a major mode that runs a shell inside of
a buffer, similarly to Comint mode.  It is built on top of Term.")
      (license license:gpl3+))))
    (license license:gpl3+)))

(define-public emacs-counsel-bbdb
  (package