summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authormox <de underscore mox {ät} zoho ]dot[ com>2019-12-31 06:40:07 +0100
committermox <de underscore mox {ät} zoho ]dot[ com>2019-12-31 06:40:07 +0100
commit89c23241ed255fc7e47f7249f82cbba66703465e (patch)
tree4402a3243cbc4f0bc15ca96ce3f1afe386572fa1 /pkgs/shells
parent08dc289f05bbf35bff1785a178e25e10f7586635 (diff)
downloadnixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar.gz
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar.bz2
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar.lz
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar.xz
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.tar.zst
nixpkgs-89c23241ed255fc7e47f7249f82cbba66703465e.zip
Adding passthru to ion shell to allow using it as a login shell as advised for a similar case in https://github.com/NixOS/nixpkgs/issues/45830
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/ion/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/ion/default.nix b/pkgs/shells/ion/default.nix
index 2bd37659387..2010f34ef7e 100644
--- a/pkgs/shells/ion/default.nix
+++ b/pkgs/shells/ion/default.nix
@@ -23,4 +23,8 @@ buildRustPackage rec {
     platforms = platforms.all;
     broken = stdenv.isDarwin;
   };
+
+  passthru = {
+	  shellPath = "/bin/ion";
+  };
 }