mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add emacs-fortran-tags.
* gnu/packages/emacs-xyz.scm (emacs-fortran-tags): New variable. Change-Id: Id54e97e6fb0697861ee113e060a3fa38d5ca8143
This commit is contained in:
parent
b0b9653c28
commit
78183b0c60
1 changed files with 25 additions and 0 deletions
|
@ -31788,6 +31788,31 @@ (define-public emacs-dap-mode
|
||||||
Debug server.")
|
Debug server.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-fortran-tags
|
||||||
|
(package
|
||||||
|
(name "emacs-fortran-tags")
|
||||||
|
(version "1.5.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/raullaasner/fortran-tags.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1f22p0nsdayxqdh03s41qs833gamdhv4q7a4csm6vgwp4ivn3z1g"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:include #~(cons "^fortran-tags.py" %default-include)))
|
||||||
|
(inputs
|
||||||
|
(list python))
|
||||||
|
(synopsis "Emacs plugin for source code indexing of modern Fortran")
|
||||||
|
(description "This package provides an Emacs plugin for source code
|
||||||
|
indexing of modern Fortran.")
|
||||||
|
(home-page "https://github.com/raullaasner/fortran-tags")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-bfuture
|
(define-public emacs-bfuture
|
||||||
(package
|
(package
|
||||||
(name "emacs-bfuture")
|
(name "emacs-bfuture")
|
||||||
|
|
Loading…
Reference in a new issue