c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
12 lines
181 B
Nix
12 lines
181 B
Nix
{ depot, ... }:
|
|
|
|
# Like writeScript,
|
|
# but put the script into `$out/bin/${name}`.
|
|
|
|
name:
|
|
script:
|
|
|
|
depot.nix.binify {
|
|
exe = (depot.nix.writeScript name script);
|
|
inherit name;
|
|
}
|