about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/auto-complete/default.nix
blob: 40f172316efc8ac6573bc907772ab4ea1471a01d (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
{ stdenv, fetchurl, emacs }:

stdenv.mkDerivation rec {
  name = "auto-complete-1.3.1";

  src = fetchurl {
    url = "http://cx4a.org/pub/auto-complete/${name}.tar.bz2";
    sha256 = "124qxfp0pcphwlmrasbfrci48brxnrzc38h4wcf2sn20x1mvcrlj";
  };

  buildInputs = [ emacs ];

  preInstall = ''
    install -d $out/share/emacs/site-lisp
  '';

  installFlags = "DIR=$(out)/share/emacs/site-lisp";

  postInstall = ''
    ln -s javascript-mode $out/share/emacs/site-lisp/ac-dict/js2-mode
  '';

  meta = {
    description = "Auto-complete extension for Emacs";
    homepage = http://cx4a.org/software/auto-complete/;
    license = stdenv.lib.licenses.gpl3Plus;

    platforms = stdenv.lib.platforms.all;
  };
}