3
0
Fork 0
forked from mirrors/nixpkgs

emacs-packages: Remove jabber from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:39 +01:00
parent 26af6f335b
commit f4c2f9794d
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,23 +0,0 @@
{ 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 = platforms.linux;
};
}