summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/jade/default.nix
blob: 0c99ceaca22bdaaad1afc7a8e65b8916f1efee23 (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, 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 = "GPLv2+";

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