We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a982a3 commit 098eaa7Copy full SHA for 098eaa7
flake.nix
@@ -33,7 +33,6 @@
33
name = "org-export.el";
34
text = ''
35
(message "Exporting org to pdf...")
36
- (setenv "PATH" (concat (getenv "PATH") ":${(pkgsFor system).texlive.combined.scheme-full}/bin"))
37
(require 'org)
38
(find-file (getenv "NIX_ORG_EXPORT_FILE"))
39
(copy-file (org-latex-export-to-pdf) (getenv "NIX_ORG_EXPORT_OUT") 't)
@@ -45,6 +44,9 @@
45
44
(pkgsFor system).stdenv.mkDerivation {
46
name = "exported.pdf";
47
inherit src;
+ buildInputs = [
48
+ (pkgsFor system).texlive.combined.scheme-full
49
+ ];
50
buildPhase = ''
51
cp -r $src .
52
stat ${file}
0 commit comments