23 lines
679 B
Nix
23 lines
679 B
Nix
{ 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
|
|
'';
|
|
}
|