about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/default.nix
blob: be52cf155e5b34b35c36f14169f17e7823884f71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, fetchFromGitHub
, trivialBuild
}:

trivialBuild {
  pname = "font-lock-plus";
  version = "208-unstable-2018-01-01";

  src = fetchFromGitHub {
    owner = "emacsmirror";
    repo = "font-lock-plus";
    rev = "f2c1ddcd4c9d581bd32be88fad026b49f98b6541";
    hash = "sha256-lFmdVMXIIXZ9ZohAJw5rhxpTv017qIyzmpuKOWDdeJ4=";
  };

  meta = with lib; {
    homepage = "https://github.com/emacsmirror/font-lock-plus";
    description = "Enhancements to standard library font-lock.el";
    license = licenses.gpl2Plus;
  };
}