about summary refs log blame commit diff
path: root/nix/writeElispBin/default.nix
blob: c116607e0aeb5cd4dc78fb11d8275097878571a4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                     
 
                                                        

   
                                                

                                     
                                                               



                                
 



                                                                       
{ 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} $@
''