gnu: Add emacs-bug-hunter.
* gnu/packages/emacs-xyz.scm (emacs-bug-hunter): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									2e8cabb8d6
								
							
						
					
					
						commit
						c1cae86de3
					
				
					 1 changed files with 28 additions and 0 deletions
				
			
		|  | @ -50,6 +50,7 @@ | |||
| ;;; Copyright © 2019 Amar Singh <nly@disroot.org> | ||||
| ;;; Copyright © 2019 Baptiste Strazzulla <bstrazzull@hotmail.fr> | ||||
| ;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autitici.org> | ||||
| ;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk> | ||||
| ;;; | ||||
| ;;; This file is part of GNU Guix. | ||||
| ;;; | ||||
|  | @ -948,6 +949,33 @@ regexp-like arguments to @code{skip-chars-forward} and | |||
| @code{skip-chars-backward}.") | ||||
|     (license license:gpl3+))) | ||||
| 
 | ||||
| (define-public emacs-bug-hunter | ||||
|   (let ((commit "b88d981afa9154b236c5a3a83b50d5889d46c6a7") | ||||
|         (revision "1")) | ||||
|     (package | ||||
|       (name "emacs-bug-hunter") | ||||
|       (version (git-version "1.3.1" revision commit)) | ||||
|       (source | ||||
|        (origin | ||||
|          (method git-fetch) | ||||
|          (uri (git-reference | ||||
|                (url "https://github.com/Malabarba/elisp-bug-hunter.git") | ||||
|                (commit commit))) | ||||
|          (file-name (git-file-name name commit)) | ||||
|          (sha256 | ||||
|           (base32 | ||||
|            "134fj493sdn93pyyac8rpz1fzahzmayvphsrmqp3wvgysmfqm38l")))) | ||||
|       (build-system emacs-build-system) | ||||
|       (propagated-inputs | ||||
|        `(("emacs-seq" ,emacs-seq))) | ||||
|       (home-page "https://github.com/Malabarba/elisp-bug-hunter") | ||||
|       (synopsis "Hunt down errors by bisecting elisp files") | ||||
|       (description | ||||
|        "The Bug Hunter is an Emacs library that finds the source of an error | ||||
| or unexpected behavior inside an elisp configuration file (typically | ||||
| @file{init.el} or @file{.emacs}).") | ||||
|       (license license:gpl3+)))) | ||||
| 
 | ||||
|  | ||||
| ;;; | ||||
| ;;; Web browsing. | ||||
|  |  | |||
		Reference in a new issue