gnu: emacs-agda2-mode: No longer inherit from agda.

* gnu/packages/agda.scm (emacs-agda2-mode): Remove it. Made no sense, as we only
need the source, which we can refer to without inheriting the whole thing.
This commit is contained in:
Josselin Poiret 2023-03-08 16:53:22 +01:00
parent 789db27c51
commit fe6c31e333
No known key found for this signature in database
GPG key ID: 505E40B916171A8A

View file

@ -129,10 +129,10 @@ (define-public agda
(define-public emacs-agda2-mode
(package
(inherit agda)
(name "emacs-agda2-mode")
(version (package-version agda))
(source (package-source agda))
(build-system emacs-build-system)
(inputs '())
(arguments
`(#:phases
(modify-phases %standard-phases
@ -141,7 +141,8 @@ (define-public emacs-agda2-mode
(home-page "https://agda.readthedocs.io/en/latest/tools/emacs-mode.html")
(synopsis "Emacs mode for Agda")
(description "This Emacs mode enables interactive development with
Agda. It also aids the input of Unicode characters.")))
Agda. It also aids the input of Unicode characters.")
(license (package-license agda))))
(define-public agda-ial
(package