mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
emacs-packages: Remove erlang from old emacs package infrastructure
This commit is contained in:
parent
65938fa496
commit
a6f38b3d76
1 changed files with 0 additions and 25 deletions
|
@ -1,25 +0,0 @@
|
|||
{ stdenv, erlang }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "erlang-mode-${erlang.version}";
|
||||
|
||||
buildInputs = [ ];
|
||||
|
||||
inherit erlang;
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p "$out/share/emacs/site-lisp"
|
||||
cp "$erlang/lib/erlang/lib/tools"*/emacs/*.el $out/share/emacs/site-lisp/
|
||||
'';
|
||||
|
||||
# emacs highlighting */
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/erlang/otp;
|
||||
description = "Erlang mode for Emacs";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.samuelrivas ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue