emacs-packages: Remove monky from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:41 +01:00
parent 07e7cf853a
commit 1c00ad630e
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,19 +0,0 @@
{ stdenv, fetchurl, emacs, unzip }:
stdenv.mkDerivation {
name = "emacs-monky-20150404";
src = fetchurl {
url = "https://github.com/ananthakumaran/monky/archive/48c0200910739b6521f26f6423b2bfb8c38b4482.zip";
sha256 = "0yp3pzddx7yki9n3qrriqa5p442qyrdivvlc4xbl024vzjyzddrj";
};
buildInputs = [ emacs unzip ];
buildPhase = "emacs -L . --batch -f batch-byte-compile *.el";
installPhase = ''
install -d $out/share/emacs/site-lisp
install *.el *.elc $out/share/emacs/site-lisp
'';
}