blob: 36650965f9917da9196b5c9c606c9c113bcb9ce7 [file] [log] [blame]
Skyler Grey3a9a2b12023-02-13 08:04:05 +00001{ 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]