summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/jabber/default.nix
blob: 781806bedd679e8a1f421c3699f8705d1340774c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, emacs }:
stdenv.mkDerivation rec {
  pname  = "emacs-jabber";
  version = "0.8.0";
  name = "${pname}-${version}";
  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${name}.tar.bz2";
    sha256 = "75e3b7853de4783b8ab8270dcbe6a1e4f576224f77f7463116532e11c6498c26";
  };
  buildInputs = [ emacs ];
  meta = with stdenv.lib; {
    description = "A Jabber client for Emacs";
    longDescription = ''
      jabber.el is a Jabber client for Emacs. It may seem strange to have a
      chat client in an editor, but consider that chatting is, after all, just
      a special case of text editing.
    '';
    homepage = http://emacs-jabber.sourceforge.net/;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ astsmtl ];
    platforms = with platforms; linux;
  };
}