summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/ensime/default.nix
blob: d776103a662741e371a59711862cf8ff445268dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, emacs, unzip, autoComplete, dash, s, scalaMode2, sbtMode }:

stdenv.mkDerivation {
  name = "emacs-ensime-2014-09-04";

  src = fetchurl {
    url = "https://github.com/ensime/ensime-emacs/archive/d3820a3f362975f6e14b817988ec07bfef2b4dad.zip";
    sha256 = "0gwr0r92z2hh2x8g0hpxaar2vvfk1b91cp6v04gaasw0fvl5i7g5";
  };

  buildInputs = [ emacs unzip ];
  propagatedUserEnvPkgs = [ autoComplete dash s scalaMode2 sbtMode ];

  buildPhase = ''
    emacs -L . -L ${autoComplete}/share/emacs/site-lisp --batch -f batch-byte-compile *.el
  '';

  installPhase = ''
    install -d $out/share/emacs/site-lisp
    install *.el *.elc $out/share/emacs/site-lisp
  '';
}