tvl-depot/overrides/writeElispBin/default.nix
Vincent Ambo 8de5d093d8 refactor: Fix a variety of filepaths for repo relayouting
This fixes readTree and the various project builds, as well
as (hopefully) most documentation links inside of the projects.
2019-12-20 20:37:02 +00:00

23 lines
547 B
Nix

{ pkgs, ... }:
{ name, src, deps ? (_: []), emacs ? pkgs.third_party.emacs26-nox }:
let
inherit (pkgs.third_party) emacsPackagesNg emacsPackagesNgGen writeTextFile;
inherit (builtins) isString toFile;
finalEmacs = (emacsPackagesNgGen emacs).emacsWithPackages deps;
srcFile = if isString src
then toFile "${name}.el" src
else src;
in writeTextFile {
inherit name;
executable = true;
destination = "/bin/${name}";
text = ''
#!/bin/sh
${finalEmacs}/bin/emacs --batch --no-site-file --script ${srcFile} $@
'';
}