Rename emacs-modes to emacs/elisp-packages

This commit is contained in:
AndersonTorres
2021-05-21 00:32:06 -03:00
parent 788deaad9d
commit 70a5cbc298
37 changed files with 24 additions and 23 deletions
@@ -0,0 +1,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;
};
}