emacs-packages: Remove let-alist from old emacs package infrastructure
This commit is contained in:
parent
c6e0fe1b9d
commit
b254161923
|
@ -1,26 +0,0 @@
|
|||
{ stdenv, fetchurl, emacs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "let-alist-1.0.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://elpa.gnu.org/packages/let-alist-1.0.3.el";
|
||||
sha256 = "12n1cmjc7hzyy0jmsdxqz1hqzg4ri4nvvi0p9mw1d6v44xzfm0mx";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
unpackPhase = "cp -v ${src} let-alist.el";
|
||||
buildPhase = "emacs --batch -f batch-byte-compile let-alist.el";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/emacs/site-lisp
|
||||
mv -v *.el *.elc $out/share/emacs/site-lisp/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://elpa.gnu.org/packages/let-alist.html;
|
||||
description = "Easily let-bind values of an assoc-list by their names";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue