summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/isearch-prop/default.nix
blob: 6251fd6932a70d0abb67c79c7d4238c12a7c2282 (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
{ lib
, stdenv
, fetchFromGitHub
, trivialBuild
, emacs
}:

trivialBuild {
  pname = "isearch-prop";
  version = "0.pre+unstable=2019-05-01";

  src = fetchFromGitHub {
    owner = "emacsmirror";
    repo = "isearch-prop";
    rev = "4a2765f835dd115d472142da05215c4c748809f4";
    hash = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk=";
  };

  meta = with lib; {
    homepage = "https://www.emacswiki.org/emacs/IsearchPlus";
    description = "Search text- or overlay-property contexts";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ leungbk ];
    inherit (emacs.meta) platforms;
  };
}