about summary refs log tree commit diff
path: root/nix/writeElispBin/default.nix
blob: c116607e0aeb5cd4dc78fb11d8275097878571a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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} $@
''