gnu: emacs-mmm-mode: Use gnu-build-system.
* gnu/packages/emacs.scm (emacs-mmm-mode): Replace melpa-stable URL with the github URL and use 'gnu-build-system' instead of 'emacs-build-system'. Fix typo (add missing space before the description).
This commit is contained in:
parent
7286933d7e
commit
0c909c056e
|
@ -814,18 +814,28 @@ or XEmacs.")
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://stable.melpa.org/packages/mmm-mode-"
|
"https://github.com/purcell/mmm-mode/archive/"
|
||||||
version
|
version ".tar.gz"))
|
||||||
".tar"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1llkzb6d978ym3zv3yfzwj0w5zzmmj3ksrm5swrx1papxcnqnkb9"))))
|
"10kwslnflbjqm62wkrq420crqzdqalzfflp9pqk1i12zm6dm4mfv"))))
|
||||||
(build-system emacs-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'autogen
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "sh" "autogen.sh")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("emacs" ,emacs-no-x)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
(home-page "https://github.com/purcell/mmm-mode")
|
(home-page "https://github.com/purcell/mmm-mode")
|
||||||
(synopsis
|
(synopsis "Allow multiple major modes in an Emacs buffer")
|
||||||
"Allow multiple major modes in an Emacs buffer")
|
|
||||||
(description
|
(description
|
||||||
"MMM Mode is a minor mode that allows multiple major modes to coexist in a
|
"MMM Mode is a minor mode that allows multiple major modes to coexist in a
|
||||||
single buffer.")
|
single buffer.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue