fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
22 lines
546 B
Nix
22 lines
546 B
Nix
{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";
|
|
};
|
|
|
|
patches = [ ./install-infodir.patch ];
|
|
|
|
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";
|
|
};
|
|
}
|