gnu: Add emacs-fortran-tags.

* gnu/packages/emacs-xyz.scm (emacs-fortran-tags): New variable.

Change-Id: Id54e97e6fb0697861ee113e060a3fa38d5ca8143
This commit is contained in:
Danny Milosavljevic 2024-08-26 23:27:34 +02:00
parent b0b9653c28
commit 78183b0c60
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -31788,6 +31788,31 @@ (define-public emacs-dap-mode
Debug server.")
(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
(package
(name "emacs-bfuture")