about summary refs log tree commit diff
path: root/nix/binify
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2020-06-28T02·52+0200
committerProfpatsch <mail@profpatsch.de>2020-06-30T00·19+0000
commit2f21e0c8c0b47dcf1b29c38a32838f48bd873c0b (patch)
tree885b671e4c9f5ee887700130dc4bfba9926dab49 /nix/binify
parent4402c363b6137112716e82b93e946634aefbb600 (diff)
refactor(nix): use our own writeScript(Bin) r/1133
We have this nice `runExecline` now, so we don’t need to use
`runCommand` (which spawns bash) just to write a simple script.

Change-Id: I2941ed8c1448fa1d7cc02dc18b24a8a945b2c38b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/704
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: BuildkiteCI
Diffstat (limited to 'nix/binify')
-rw-r--r--nix/binify/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/binify/default.nix b/nix/binify/default.nix
index 17fd980ad9..d40930fd33 100644
--- a/nix/binify/default.nix
+++ b/nix/binify/default.nix
@@ -10,7 +10,7 @@
 # with `binify { exe = …; name = "hello" }`.
 { exe, name }:
 
-pkgs.runCommandLocal "binify-${name}" {} ''
+pkgs.runCommandLocal "${name}-bin" {} ''
   mkdir -p $out/bin
   ln -sT ${lib.escapeShellArg exe} $out/bin/${lib.escapeShellArg name}
 ''