summary refs log tree commit diff
path: root/pkgs/tools/misc/mcfly
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-09-09 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-09-09 04:20:00 +0000
commit71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf (patch)
treee699d02ef1493e1cfbbc4f50a85e2aa156783d61 /pkgs/tools/misc/mcfly
parentdb88608d8c811a93b74c99cfa1224952afc78200 (diff)
downloadnixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar.gz
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar.bz2
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar.lz
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar.xz
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.tar.zst
nixpkgs-71b7b77cbe1928561f4e8e595aef4fa4ac20e0cf.zip
mcfly: replace executable path in init scripts
Diffstat (limited to 'pkgs/tools/misc/mcfly')
-rw-r--r--pkgs/tools/misc/mcfly/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/tools/misc/mcfly/default.nix b/pkgs/tools/misc/mcfly/default.nix
index 0d55da7fdfa..e613e4bb3ea 100644
--- a/pkgs/tools/misc/mcfly/default.nix
+++ b/pkgs/tools/misc/mcfly/default.nix
@@ -11,6 +11,12 @@ rustPlatform.buildRustPackage rec {
     sha256 = "0i3qjgq1b8h3bzc7rxa60kq1yc2im9m6dgzrvial086a1zk8s81r";
   };
 
+  postPatch = ''
+    substituteInPlace mcfly.bash --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly'
+    substituteInPlace mcfly.zsh  --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly'
+    substituteInPlace mcfly.fish --replace '(which mcfly)'  '${placeholder "out"}/bin/mcfly'
+  '';
+
   cargoSha256 = "084v4fsdi25ahz068ssq29z7d5d3k3jh3s8b07irwybdsy18c629";
 
   meta = with lib; {