emacs-packages: Remove jade from old emacs package infrastructure
This commit is contained in:
parent
f4c2f9794d
commit
438131a1a4
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
{ stdenv, fetchgit, emacs }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "jade-mode-0-20120802";
|
|
||||||
|
|
||||||
src = fetchgit {
|
|
||||||
url = "https://github.com/brianc/jade-mode.git";
|
|
||||||
rev = "275ab149edb0f6bcfae6ac17ba456f3351191604";
|
|
||||||
sha256 = "3cd2bebcd66e59d60b8e5e538e65a8ffdfc9a53b86443090a284e8329d7cb09b";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ emacs ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
emacs --batch -L . -f batch-byte-compile *.el
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/share/emacs/site-lisp
|
|
||||||
cp *.el *.elc $out/share/emacs/site-lisp/
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Emacs major mode for jade and stylus";
|
|
||||||
homepage = https://github.com/brianc/jade-mode;
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue