2008-02-11 18:02:46 +01:00
|
|
|
{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";
|
|
|
|
};
|
|
|
|
|
2008-02-20 12:16:59 +01:00
|
|
|
patches = [ ./install-infodir.patch ];
|
2008-02-11 18:02:46 +01:00
|
|
|
|
2008-02-20 12:16:59 +01:00
|
|
|
buildInputs = [emacs texinfo ctags];
|
2008-02-11 18:02:46 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "The Insidious Big Brother Database (BBDB), a contact management utility for Emacs";
|
2008-02-11 18:02:46 +01:00
|
|
|
homepage = http://bbdb.sourceforge.net/;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|