Skip to content

Commit

Permalink
applications/editors/emacs-modes/jabber: New nixbuild.
Browse files Browse the repository at this point in the history
svn path=/nixpkgs/trunk/; revision=21806
  • Loading branch information
astsmtl committed May 16, 2010
1 parent e367687 commit 03d8bab
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/applications/editors/emacs-modes/jabber/default.nix
@@ -0,0 +1,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 = {
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 = [ "GPLv2+" ];
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7499,6 +7499,10 @@ let
inherit fetchurl stdenv emacs cedet jdee texinfo;
};

jabber = import ../applications/editors/emacs-modes/jabber {
inherit stdenv fetchurl emacs;
};

emacsSessionManagement = import ../applications/editors/emacs-modes/session-management-for-emacs {
inherit fetchurl stdenv emacs;
};
Expand Down

0 comments on commit 03d8bab

Please sign in to comment.