[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add emacs-simple-mpc.
From: |
guix-commits |
Subject: |
04/04: gnu: Add emacs-simple-mpc. |
Date: |
Wed, 23 Jan 2019 06:27:50 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 672489622b0a2f906063ae9104eb188cb27088b9
Author: Ricardo Wurmus <address@hidden>
Date: Wed Jan 23 12:27:18 2019 +0100
gnu: Add emacs-simple-mpc.
* gnu/packages/emacs-xyz.scm (emacs-simple-mpc): New variable.
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 02e227d..bbea4c0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -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+))))