Skyler Grey | 3a9a2b1 | 2023-02-13 08:04:05 +0000 | [diff] [blame] | 1 | { utils, pkgs }: file: pkgs.lib.pipe file [ |
2 | utils.readFile | ||||
3 | (text: pkgs.writeTextFile { | ||||
4 | name = builtins.baseNameOf file; | ||||
5 | inherit text; | ||||
6 | executable = true; # TODO: write and use utils.isExecutable | ||||
7 | }) | ||||
8 | ] |