summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2018-11-26 16:31:31 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2018-11-30 03:18:04 +0300
commit2b6164f033d3cf3f584d89ac0eb3d681f1c1fcf9 (patch)
treef4ced88c48d714899a5818849737857d99244221
parent477fceb1e3a35e95e53e748fcdf6eed27a7a9120 (diff)
gnu: Add emacs-ansible-doc.
* gnu/packages/admin.scm (emacs-ansible-doc): New variable.
-rw-r--r--gnu/packages/admin.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 28961ecf88a..c725fb9a2f4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -45,6 +45,7 @@
45 #:use-module (guix download) 45 #:use-module (guix download)
46 #:use-module (guix git-download) 46 #:use-module (guix git-download)
47 #:use-module (guix build-system cmake) 47 #:use-module (guix build-system cmake)
48 #:use-module (guix build-system emacs)
48 #:use-module (guix build-system gnu) 49 #:use-module (guix build-system gnu)
49 #:use-module (guix build-system meson) 50 #:use-module (guix build-system meson)
50 #:use-module (guix build-system perl) 51 #:use-module (guix build-system perl)
@@ -1622,6 +1623,34 @@ ad hoc task execution, and multinode orchestration---including trivializing
1622things like zero-downtime rolling updates with load balancers.") 1623things like zero-downtime rolling updates with load balancers.")
1623 (license license:gpl3+))) 1624 (license license:gpl3+)))
1624 1625
1626(define-public emacs-ansible-doc
1627 (let ((commit "86083a7bb2ed0468ca64e52076b06441a2f8e9e0"))
1628 (package
1629 (name "emacs-ansible-doc")
1630 (version (git-version "0.4" "1" commit))
1631 (source
1632 (origin
1633 (method git-fetch)
1634 (uri (git-reference
1635 (url "https://github.com/lunaryorn/ansible-doc.el")
1636 (commit commit)))
1637 (file-name (git-file-name name version))
1638 (sha256
1639 (base32
1640 "0lap404ch74w99n3xip176jr42b38xhyzkfnkyqg0g3wk2cd3aq8"))))
1641 (build-system emacs-build-system)
1642 ;; Unmaintained by upstream.
1643 (home-page "https://github.com/lunaryorn/ansible-doc.el")
1644 (synopsis "Ansible documentation for Emacs")
1645 (description
1646 "This package provides an Ansible documentation for GNU Emacs.
1647
1648@code{ansible-doc} allows you to view the documentation of an Ansible
1649module and @code{ansible-doc-mode} minor mode adds documentation
1650lookup to YAML Mode. You could enable the mode with @code{(add-hook
1651'yaml-mode-hook #'ansible-doc-mode)}.")
1652 (license license:gpl3+))))
1653
1625(define-public cpulimit 1654(define-public cpulimit
1626 (package 1655 (package
1627 (name "cpulimit") 1656 (name "cpulimit")