emacs-packages: Remove js2 from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:40 +01:00
parent 0e7598677c
commit c6e0fe1b9d
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,22 +0,0 @@
{ stdenv, fetchgit, emacs }:
stdenv.mkDerivation {
name = "js2-mode-0-20141118";
src = fetchgit {
url = "git://github.com/mooz/js2-mode.git";
rev = "3abcd90ddc2f446ddf0fb874dd79ba870c26ad2d";
sha256 = "0sh9ax2w0ydhjjn4vnwbgy3926p7ad6h6nmsnm0a3zlldj9a4vwn";
};
buildInputs = [ emacs ];
buildPhase = ''
emacs --batch -f batch-byte-compile js2-mode.el
'';
installPhase = ''
mkdir -p $out/share/emacs/site-lisp
cp js2-mode.el js2-mode.elc $out/share/emacs/site-lisp/
'';
}