Add BBDB, Emacs' Insidious Big Brother Database.

svn path=/nixpkgs/trunk/; revision=10625
This commit is contained in:
Ludovic Courtès 2008-02-11 17:02:46 +00:00
parent e28ea5fcd5
commit c54243a009
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,7 @@
source "$stdenv/setup"
unpackPhase && \
cd bbdb-*.* && \
./configure --prefix="$out" \
--with-package-dir="$out/lib/site-emacs" && \
make && make install-pkg

View file

@ -0,0 +1,21 @@
{stdenv, fetchurl, emacs, texinfo, ctags}:
stdenv.mkDerivation {
name = "bbdb-2.35";
src = fetchurl {
url = http://bbdb.sourceforge.net/bbdb-2.35.tar.gz;
sha256 = "3fb1316e2ed74d47ca61187fada550e58797467bd9e8ad67343ed16da769f916";
};
buildInputs = [emacs texinfo ctags];
builder = ./builder.sh;
meta = {
description = ''The Insidious Big Brother Database (BBDB), a
contact management utility for Emacs.'';
homepage = http://bbdb.sourceforge.net/;
license = "GPL";
};
}

View file

@ -4448,6 +4448,10 @@ rec {
inherit (gtkLibs) gtk;
};
bbdb = import ../applications/editors/emacs-modes/bbdb {
inherit fetchurl stdenv emacs texinfo ctags;
};
cua = import ../applications/editors/emacs-modes/cua {
inherit fetchurl stdenv;
};