about summary refs log tree commit diff
path: root/pkgs/tools/misc/heatseeker
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-07-31 14:08:19 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-07-31 14:08:19 +1000
commit7d58c271b8ac0070e1a783f31c01682254a4c813 (patch)
tree3e273c736c9cb315ef8f50cff8b8b0d5b26752b3 /pkgs/tools/misc/heatseeker
parentafd895debbd40d1d12d2d5de86cc43c1568ec1b4 (diff)
buildRustPackage packages: editorconfig fixes
Diffstat (limited to 'pkgs/tools/misc/heatseeker')
-rw-r--r--pkgs/tools/misc/heatseeker/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/heatseeker/default.nix b/pkgs/tools/misc/heatseeker/default.nix
index e0b8c02a08eac..207788ed61d6a 100644
--- a/pkgs/tools/misc/heatseeker/default.nix
+++ b/pkgs/tools/misc/heatseeker/default.nix
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
   # I've suggested using `/usr/bin/env stty`, but doing that isn't quite as simple
   # as a substitution, and this works since we have the path to coreutils stty.
   patchPhase = ''
-    substituteInPlace src/screen/unix.rs --replace "/bin/stty" "${coreutils}/bin/stty" 
+    substituteInPlace src/screen/unix.rs --replace "/bin/stty" "${coreutils}/bin/stty"
   '';
 
   # some tests require a tty, this variable turns them off for Travis CI,