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

This commit is contained in:
mox 2019-12-31 06:40:07 +01:00
parent 08dc289f05
commit 89c23241ed

View file

@ -23,4 +23,8 @@ buildRustPackage rec {
platforms = platforms.all;
broken = stdenv.isDarwin;
};
passthru = {
shellPath = "/bin/ion";
};
}