summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/emacs-modes/jabber/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/jabber/default.nix')
-rw-r--r--pkgs/applications/editors/emacs-modes/jabber/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/applications/editors/emacs-modes/jabber/default.nix b/pkgs/applications/editors/emacs-modes/jabber/default.nix
deleted file mode 100644
index c8b64130872a..000000000000
--- a/pkgs/applications/editors/emacs-modes/jabber/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv, fetchurl, emacs }:
-stdenv.mkDerivation rec {
- pname = "emacs-jabber";
- version = "0.8.0";
- src = fetchurl {
- url = "mirror://sourceforge/${pname}/${pname}-${version}.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 = platforms.linux;
- };
-}