diff options
author | Carlo Zancanaro <carlo.zancanaro@rokt.com> | 2019-11-12 09:59:26 +1100 |
---|---|---|
committer | Carlo Zancanaro <carlo.zancanaro@rokt.com> | 2019-11-12 09:59:26 +1100 |
commit | e4c94394d3ebf0ea174c00c1ccee9efa762b7e01 (patch) | |
tree | d1f0503822d7a136a4b8499865a42ff98957f234 | |
parent | d54e153220ba5060cb57d5467a721b251f2a4023 (diff) |
Add emacs-kubernetes
-rw-r--r-- | emacs.scm | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -391,3 +391,26 @@ Features include : - `imenu' support for quick navigation; ") (license #f))) + +(define-public emacs-kubernetes + (package + (name "emacs-kubernetes") + (version "0.13.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/chrisbarrett/kubernetes-el/archive/" + version ".tar.gz")) + (sha256 + (base32 + "03w4g5zsnda1f0xwylmdncadaq1wrlwhmpm17y0gr1jan4v6w97i")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-magit" ,emacs-magit) + ("emacs-magit-popup" ,emacs-magit-popup))) + (home-page "unspecified") + (synopsis "Magit-like porcelain for Kubernetes.") + (description "") + (license #f))) |