mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add emacs-simple-mpc.
* gnu/packages/emacs-xyz.scm (emacs-simple-mpc): New variable.
This commit is contained in:
parent
a38fa63b4b
commit
672489622b
1 changed files with 25 additions and 0 deletions
|
@ -12920,3 +12920,28 @@ (define-public emacs-nix-mode
|
|||
Nix expressions. It supports syntax highlighting, indenting and refilling of
|
||||
comments.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public emacs-simple-mpc
|
||||
;; There have been no releases.
|
||||
(let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-simple-mpc")
|
||||
(version (git-version "0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jorenvo/simple-mpc.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs `(("emacs-s" ,emacs-s)))
|
||||
(home-page "https://github.com/jorenvo/simple-mpc")
|
||||
(synopsis "Simple Emacs frontend to mpc")
|
||||
(description "This package provides an Emacs major mode which acts as a
|
||||
front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).")
|
||||
(license license:gpl3+))))
|
||||
|
|
Loading…
Reference in a new issue