mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Add BBDB, Emacs' Insidious Big Brother Database.
svn path=/nixpkgs/trunk/; revision=10625
This commit is contained in:
parent
e28ea5fcd5
commit
c54243a009
7
pkgs/applications/editors/emacs-modes/bbdb/builder.sh
Normal file
7
pkgs/applications/editors/emacs-modes/bbdb/builder.sh
Normal 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
|
21
pkgs/applications/editors/emacs-modes/bbdb/default.nix
Normal file
21
pkgs/applications/editors/emacs-modes/bbdb/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user