summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
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}
'';
};