summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2026-02-09 10:05:01 -0600
committerChris Wells <chris@mathematicaster.org>2026-02-09 10:05:01 -0600
commit685e9f8469c12a38f2d32d4468ff575ad78f1386 (patch)
treea811ce915cb1aa67aae86684f79f1cec97bba4d5 /flake.nix
parent2242207606f3c4fe04935df7a9ba9bfd80ea8cea (diff)
downloadmain-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar.gz
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar.bz2
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar.lz
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar.xz
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.tar.zst
main-685e9f8469c12a38f2d32d4468ff575ad78f1386.zip
Another attempt to fix the tex path
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 4929637..98c8949 100644
--- a/flake.nix
+++ b/flake.nix
@@ -25,11 +25,9 @@
];
paths = [
pkgs.rubber
- ] ++ texPath;
+ ];
postBuild = ''
- for x in $out/bin/*; do
- wrapProgram "$x" --prefix PATH : ${pkgs.lib.makeBinPath paths}
- done
+ wrapProgram "$out/bin/rubber-pipe" --set PATH : ${pkgs.lib.makeBinPath texPath}
'';
};