about summary refs log tree commit diff
path: root/pkgs/shells/rush/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/rush/default.nix')
-rw-r--r--pkgs/shells/rush/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/shells/rush/default.nix b/pkgs/shells/rush/default.nix
index d840c3b77a5c..c9560c86f24c 100644
--- a/pkgs/shells/rush/default.nix
+++ b/pkgs/shells/rush/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, lib, stdenv }:
+{ fetchurl, lib, stdenv, bash, perl }:
 
 stdenv.mkDerivation rec {
   pname = "rush";
@@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-ld5TdpF7siprQCbhE4oxYhH40x3QZ5NCQlD3zRaNmM0=";
   };
 
+  strictDeps = true;
+  buildInputs = [ bash ];
+
+  postInstall = ''
+    substituteInPlace $out/bin/rush-po \
+      --replace "exec perl" "exec ${lib.getExe perl}"
+  '';
+
   doCheck = true;
 
   meta = {