about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/bbdb/default.nix
blob: 689bcfc9adfdd7a2b60ac80f3ac75f54492fea8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{stdenv, fetchurl, emacs, texinfo, ctags}:

stdenv.mkDerivation rec {
  name = "bbdb-2.36";

  src = fetchurl {
    # not using mirror:// because it produces a different file
    url = "http://bbdb.sourceforge.net/${name}.tar.gz";
    sha256 = "1rmw94l71ahfbynyy0bijfy488q9bl5ksl4zpvg7j9dbmgbh296r";
  };

  patches = [ ./install-infodir.patch ];

  buildInputs = [emacs texinfo ctags];
  configureFlags = [ "--with-package-dir=$$out/share/emacs/site-lisp" ];
  preInstall = "mkdir -p $out/info";
  installTargets = "install-pkg texinfo";
  postInstall = ''
    mv  $out/info $out/share/
    mv "$out/share/emacs/site-lisp/lisp/bbdb/"* $out/share/emacs/site-lisp/
    mv $out/share/emacs/site-lisp/etc/bbdb $out/share/
    rm -rf $out/share/emacs/site-lisp/{lisp,etc}
    mv bits $out/share/bbdb/
    # Make optional modules from bbdb available for import, but symlink
    # them into the site-lisp directory to make it obvious that they are
    # not a genuine part of the distribution.
    ln -s "$out/share/bbdb/bits/"*.el $out/share/emacs/site-lisp/
  '';

  meta = {
    homepage = http://bbdb.sourceforge.net/;
    description = "The Insidious Big Brother Database (BBDB), a contact management utility for Emacs";
    license = "GPL";
  };
}