about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/gn/default.nix
blob: 39e7d1abf386c61fd3e4e8ae9f6ecb29bde7f8b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchgit, emacs }:

stdenv.mkDerivation {
  name = "gn-mode-2017-09-21";
  src = fetchgit {
    url = "https://chromium.googlesource.com/chromium/src/tools/gn";
    rev = "34f2780efb3fe14fe361ec161ad58440de5a6b36";
    sha256 = "10cisqz3l6ny3471yi7y1z8v622lpl65zh0liqr6absvmy63g866";
  };
  buildInputs = [ emacs ];

  buildPhase = ''
    emacs --batch -f batch-byte-compile misc/emacs/gn-mode.el
  '';

  installPhase = ''
    mkdir -p $out/share/emacs/site-lisp/
    cp misc/emacs/gn-mode.el* $out/share/emacs/site-lisp/
  '';
}