99c868c010
GitHub does a redirect to https:// when you use http:// repology complains with: “Homepage link "https://github.com/…" is dead (HTTP error 404) for more than a month.” This will fix some of them (not all though)
26 lines
535 B
Nix
26 lines
535 B
Nix
{ 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 ];
|
|
};
|
|
}
|