about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/ess-R-object-popup/default.nix
blob: a92471a9493bfe0157c0ecea96def04a7f6e07bb (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, stdenv, fetchgit }:

stdenv.mkDerivation {
  name = "ess-R-object-popup-20130302";

  src = fetchgit {
    url = "https://github.com/myuhe/ess-R-object-popup.el.git";
    rev = "7e1f601bfba72de0fda44d9c82f96028ecbb9948";
    sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0";
  };

  installPhase = ''
    mkdir -p $out/share/emacs/site-lisp
    cp *.el *.elc $out/share/emacs/site-lisp/
  '';

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