nte/stdlib.nix

9 lines
169 B
Nix
Raw Normal View History

2024-05-22 21:19:37 +02:00
pkgs: let
inherit (pkgs) lib runCommand;
inherit (lib.strings) readFile;
in {
run = script: readFile (runCommand "run" {} ''
echo $(${script}) > $out
'');
}