about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ess-R-object-popup/default.nix
blob: 7809dcd735660d39011934ca3defd8fbcf8cf7b6 (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
29
{ trivialBuild
, fetchFromGitHub
, emacs
, popup
, ess
}:

trivialBuild rec {
  pname = "ess-R-object-popup";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "myuhe";
    repo = "ess-R-object-popup.el";
    rev = "v${version}";
    hash = "sha256-YN8ZLXEbwTFdFfovkV2IXV9v6y/PTgCdiRQqbpRaF2E=";
  };

  packageRequires = [
    popup
    ess
  ];

  meta = {
    homepage = "https://github.com/myuhe/ess-R-object-popup.el";
    description = "Popup descriptions of R objects";
    inherit (emacs.meta) platforms;
  };
}