about summary refs log tree commit diff
path: root/nix/writeElispBin/default.nix
blob: 3ea2da58aab2464fe441242fdc475ec978fe7e5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ depot, pkgs, ... }:

{ name, src, deps ? (_: [ ]), emacs ? pkgs.emacs27-nox }:

let
  inherit (pkgs) emacsPackages emacsPackagesGen;
  inherit (builtins) isString toFile;

  finalEmacs = (emacsPackagesGen emacs).emacsWithPackages deps;

  srcFile =
    if isString src
    then toFile "${name}.el" src
    else src;

in
depot.nix.writeScriptBin name ''
  #!/bin/sh
  ${finalEmacs}/bin/emacs --batch --no-site-file --script ${srcFile} $@
''