Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
767 B
Nix
39 lines
767 B
Nix
{
|
|
stdenv,
|
|
cedille,
|
|
emacs,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "cedille-mode";
|
|
|
|
inherit (cedille) version src;
|
|
|
|
buildInputs = [ emacs ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -d $out/share/emacs/site-lisp
|
|
install se-mode/*.el se-mode/*.elc $out/share/emacs/site-lisp
|
|
install cedille-mode/*.el cedille-mode/*.elc $out/share/emacs/site-lisp
|
|
install *.el *.elc $out/share/emacs/site-lisp
|
|
substituteInPlace $out/share/emacs/site-lisp/cedille-mode.el \
|
|
--replace /usr/bin/cedille ${cedille}/bin/cedille
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
inherit (cedille.meta)
|
|
homepage
|
|
license
|
|
maintainers
|
|
platforms
|
|
;
|
|
description = "Emacs major mode for Cedille";
|
|
};
|
|
}
|