about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/helm-words/default.nix
blob: 1cc7a23e17d1a2d9cafa0bf7e38bcdcdd632f733 (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
{ lib
, trivialBuild
, fetchFromGitHub
, dictionary
, emacs
, helm
}:

trivialBuild rec {
  pname = "helm-words";
  version = "0.0.0+unstable=2019-03-12";

  src = fetchFromGitHub {
    owner = "emacsmirror";
    repo = pname;
    rev = "e6387ece1940a06695b9d910de3d90252efb8d29";
    hash = "sha256-rh8YKDLZZCUE6JnnRnFyDDyUjK+35+M2dkawR/+qwNM=";
  };

  packageRequires = [ helm dictionary ];

  meta = with lib; {
    homepage = "https://github.com/emacsmirror/helm-words";
    description = "Helm extension for looking up words in dictionaries and thesauri";
    license = licenses.gpl3Plus;
    inherit (emacs.meta) platforms;
  };
}