summary refs log tree commit diff
path: root/pkgs/shells/dash
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-05-14 14:01:49 +0100
committerzimbatm <zimbatm@zimbatm.com>2016-06-12 18:57:29 +0100
commitb5dad466d5009c9c6f33538451cd3fbe4e612a3e (patch)
treee851a0854058f61e5550385ba88aa0ed0078d32c /pkgs/shells/dash
parent852e9c309638c3e1c0e611c70a2b443d52455aca (diff)
downloadnixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar.gz
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar.bz2
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar.lz
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar.xz
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.tar.zst
nixpkgs-b5dad466d5009c9c6f33538451cd3fbe4e612a3e.zip
dash: add shellPath passthru
Diffstat (limited to 'pkgs/shells/dash')
-rw-r--r--pkgs/shells/dash/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index d3104439e57..1a95b4f42e6 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -13,4 +13,8 @@ stdenv.mkDerivation rec {
     description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";
     hydraPlatforms = stdenv.lib.platforms.linux;
   };
+
+  passthru = {
+    shellPath = "/bin/dash";
+  };
 }