gnu: Add emacs-citre.
* gnu/packages/emacs-xyz.scm (emacs-citre): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
		
							parent
							
								
									11d9077be1
								
							
						
					
					
						commit
						605a14a176
					
				
					 1 changed files with 43 additions and 0 deletions
				
			
		| 
						 | 
					@ -34148,6 +34148,49 @@ wraps GNU Global calls and integration to editor using this API with
 | 
				
			||||||
project.el and xref.el.")
 | 
					project.el and xref.el.")
 | 
				
			||||||
      (license license:gpl3+))))
 | 
					      (license license:gpl3+))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(define-public emacs-citre
 | 
				
			||||||
 | 
					  (package
 | 
				
			||||||
 | 
					    (name "emacs-citre")
 | 
				
			||||||
 | 
					    (version "0.3.1")
 | 
				
			||||||
 | 
					    (source
 | 
				
			||||||
 | 
					     (origin
 | 
				
			||||||
 | 
					       (method git-fetch)
 | 
				
			||||||
 | 
					       (uri (git-reference
 | 
				
			||||||
 | 
					             (url "https://github.com/universal-ctags/citre/")
 | 
				
			||||||
 | 
					             (commit (string-append "v" version))))
 | 
				
			||||||
 | 
					       (sha256
 | 
				
			||||||
 | 
					        (base32 "168z6yidh2nxkmdlx9cqdzzb7achxdipnbk5pj9787m9bp1sdpkd"))
 | 
				
			||||||
 | 
					       (file-name (git-file-name name version))))
 | 
				
			||||||
 | 
					    (build-system emacs-build-system)
 | 
				
			||||||
 | 
					    (arguments
 | 
				
			||||||
 | 
					     (list
 | 
				
			||||||
 | 
					      #:phases
 | 
				
			||||||
 | 
					      #~(modify-phases %standard-phases
 | 
				
			||||||
 | 
					          (add-after 'unpack 'set-external-programs
 | 
				
			||||||
 | 
					            (lambda* (#:key inputs #:allow-other-keys)
 | 
				
			||||||
 | 
					              (emacs-substitute-variables "citre-ctags.el"
 | 
				
			||||||
 | 
					                ("citre-ctags-program"
 | 
				
			||||||
 | 
					                 (search-input-file inputs "/bin/ctags")))
 | 
				
			||||||
 | 
					              (emacs-substitute-variables "citre-readtags.el"
 | 
				
			||||||
 | 
					                ("citre-readtags-program"
 | 
				
			||||||
 | 
					                 (search-input-file inputs "/bin/readtags")))
 | 
				
			||||||
 | 
					              (emacs-substitute-variables "citre-global.el"
 | 
				
			||||||
 | 
					                ("citre-gtags-program"
 | 
				
			||||||
 | 
					                 (search-input-file inputs "/bin/gtags")))
 | 
				
			||||||
 | 
					              (emacs-substitute-variables "citre-global.el"
 | 
				
			||||||
 | 
					                ("citre-global-program"
 | 
				
			||||||
 | 
					                 (search-input-file inputs "/bin/global"))))))))
 | 
				
			||||||
 | 
					    (inputs (list global universal-ctags))
 | 
				
			||||||
 | 
					    (home-page "https://github.com/universal-ctags/citre")
 | 
				
			||||||
 | 
					    (synopsis "Ctags IDE on the True Editor")
 | 
				
			||||||
 | 
					    (description
 | 
				
			||||||
 | 
					     "Citre is an advanced Ctags (or actually, readtags) frontend for
 | 
				
			||||||
 | 
					Emacs. It offers Completion At Point, Xref and Imenu integration.  It also
 | 
				
			||||||
 | 
					prodites a Completing Read UI for jumping to definition and a powerful code
 | 
				
			||||||
 | 
					reading tool that lets you go down the rabbit hole without leaving current
 | 
				
			||||||
 | 
					buffer.")
 | 
				
			||||||
 | 
					    (license license:gpl3+)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public emacs-seq
 | 
					(define-public emacs-seq
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "emacs-seq")
 | 
					    (name "emacs-seq")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue