summary refs log tree commit diff
path: root/pkgs/shells/tcsh
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-05-14 14:03:25 +0100
committerzimbatm <zimbatm@zimbatm.com>2016-06-12 18:57:31 +0100
commit53060e5bb8b0bbf73aeda1383fac73c9c8122e55 (patch)
treeb4bbfe7a6c2eef66800736be216a6e79e86b9236 /pkgs/shells/tcsh
parent2e22de1f58c8d796867bda0c5831c9cb5d2d04eb (diff)
downloadnixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar.gz
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar.bz2
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar.lz
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar.xz
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.tar.zst
nixpkgs-53060e5bb8b0bbf73aeda1383fac73c9c8122e55.zip
tcsh: add shellPath passthru
Diffstat (limited to 'pkgs/shells/tcsh')
-rw-r--r--pkgs/shells/tcsh/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index be182f87f1e..764ea64f3ce 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -19,4 +19,8 @@ stdenv.mkDerivation rec {
     homepage = http://www.tcsh.org/;
     description = "An enhanced version of the Berkeley UNIX C shell (csh)";
   };
+
+  passthru = {
+    shellPath = "/bin/tcsh";
+  };
 }