1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2014 Alex Kost <alezost@gmail.com>
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (emacs-circe)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system emacs)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages guile)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages tls)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages guile)
#:use-module (gnu packages xorg)
#:use-module (gnu packages lesstif)
#:use-module (gnu packages image)
#:use-module (gnu packages linux)
#:use-module (gnu packages version-control)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages w3m)
#:use-module (gnu packages wget)
#:use-module (gnu packages autotools)
#:use-module (gnu packages compression)
#:use-module (gnu packages xml)
#:use-module (gnu packages glib)
#:use-module (gnu packages acl)
#:use-module (gnu packages perl)
#:use-module (gnu packages pdf)
#:use-module (gnu packages xiph)
#:use-module (gnu packages mp3)
#:use-module (guix utils)
#:use-module (srfi srfi-1))
(define-public emacs-circe
(package
(name "emacs-circe")
(version "2.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/jorgenschaefer/circe/archive/v"
version ".tar.gz"))
(sha256
(base32
"0pf4mqy4m55jqk8i21r5jmxr6azq9ai3j162ik0gia0xd80s0p63"))))
(build-system emacs-build-system)
(home-page "http://www.nongnu.org/circe/")
(synopsis "Client for IRC in Emacs")
(description
"Circe is a Client for IRC in Emacs. It integrates well with the rest
of the editor, using standard Emacs key bindings and indicating
activity in channels in the status bar so it stays out of your way
unless you want to use it.
")
(license license:gpl3+)))
(define-public emacs-async
(package
(name "emacs-async")
(version "1.3")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/jwiegley/emacs-async/archive/v"
version ".tar.gz"))
(sha256
(base32
"1yzasjrp6yw6l840j3ryapkyziwrq5c6np35zxgb4hhvb47qaq0x"))))
(build-system emacs-build-system)
(home-page "https://github.com/jwiegley/emacs-async")
(synopsis "Asynchronous processing in Emacs")
(description
"Adds the ability to call asynchronous functions and process with ease. See
the documentation for `async-start' and `async-start-process'.")
(license license:gpl3+))
)
(define-public emacs-helm
(package
(name "emacs-helm")
(version "1.7.5")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/emacs-helm/helm/archive/v" version
".tar.gz"))
(sha256
(base32
"1hpjjl4j4zd8n19sw6j693a5pr04a1a7i3x0rhw4hgh6lvd7yxah"))))
(build-system emacs-build-system)
(inputs
`(("emacs-async" ,emacs-async)))
(home-page "https://emacs-helm.github.io/helm/")
(synopsis
"Helm is an Emacs incremental and narrowing framework")
(description "Helm is incremental completion and selection narrowing framework for Emacs. It will help steer you in the right direction when you're looking for stuff in Emacs (like buffers, files, etc).")
(license license:gpl3+)))
(define-public emacs-helm-circe
(package
(name "emacs-helm-circe")
(version "0.3")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/lesharris/helm-circe/archive/v"
version ".tar.gz"))
(sha256
(base32
"0ndi4g60cvwppsgcw1jgaxmwk53r6w93n7rgy204f2bwk8ahkd9s"))))
(build-system emacs-build-system)
(inputs
`(("emacs-helm" ,emacs-helm)
("emacs-circe" ,emacs-circe)))
(home-page
"https://github.com/lesharris/helm-circe")
(synopsis "Helm circe buffer management.")
(description
"Jump to Circe buffers easily with Helm. A call to `helm-circe` will show a list of circe channel and server
buffers allowing you to switch channels easily as well as remove circe buffers. Largely based on helm-mt by Didier Deshommes")
(license license:gpl3+))
)
|