mirror of
https://github.com/emacs-twist/org-babel.git
synced 2024-12-14 11:07:30 +00:00
commit
d4a61af7ea
1 changed files with 6 additions and 4 deletions
10
flake.nix
10
flake.nix
|
@ -7,10 +7,12 @@
|
|||
in
|
||||
{
|
||||
inherit lib;
|
||||
overlay = _: pkgs: {
|
||||
tangleOrgBabelFile = name: path: options:
|
||||
pkgs.writeText name
|
||||
(lib.tangleOrgBabel options (builtins.readFile path));
|
||||
overlays = {
|
||||
default = _: prev: {
|
||||
tangleOrgBabelFile = name: path: options:
|
||||
prev.writeText name
|
||||
(lib.tangleOrgBabel options (builtins.readFile path));
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue