gnu: Add emacs-simple-mpc.

* gnu/packages/emacs-xyz.scm (emacs-simple-mpc): New variable.
master
Ricardo Wurmus 2019-01-23 12:27:18 +01:00
parent a38fa63b4b
commit 672489622b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -12920,3 +12920,28 @@ to open SQLite databases.")
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+))))