summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/helm-words/default.nix
blob: 00879463276c9423815c916a23016910c23e7bfe (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
{ stdenv, fetchgit }:

stdenv.mkDerivation {
  name = "helm-words-20190917";

  src = fetchgit {
    url = "https://github.com/pronobis/helm-words.git";
    rev = "e6387ece1940a06695b9d910de3d90252efb8d29";
    sha256 = "1ly0mbzlgc26fqvf7rxpmy698g0cf9qldrwrx022ar6r68l1h7xf";
  };

  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/helm-words";
    license = stdenv.lib.licenses.gpl3;
    platforms = stdenv.lib.platforms.all;
  };
}