Skip to content

Commit 099c951

Browse files
committed
Fix path to pandoc
1 parent 55360f8 commit 099c951

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/exporters/pandoc/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ symlinkJoin {
4747
icon_monochrome = iconMonochrome;
4848
args = [(x + "/bin/export")];
4949
input_extensions = ["ipynb" "md"];
50-
inherit pandoc;
50+
pandoc = "${pandoc}/bin/pandoc";
5151
}) exporters;
5252
};
5353

modules/exporters/typst/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ symlinkJoin {
4444
args = [(script + "/bin/typst-export")];
4545
outputs = ["pdf" "png" "svg" "html"];
4646
input_extensions = ["typ"];
47-
pandoc = pandoc;
47+
pandoc = "${pandoc}/bin/pandoc";
4848
}];
4949
};
5050

0 commit comments

Comments
 (0)