oksh: add shellPath for use as user shells

This allows the user shell to be set to pkgs.oksh instead of needing
a string like "${pkgs.oksh}/bin/oksh".
This commit is contained in:
Josh Rickmar 2021-01-26 09:21:02 -05:00
parent 13a6565c4c
commit 6198e24f02

View file

@ -18,4 +18,8 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ siraben ];
platforms = platforms.all;
};
passthru = {
shellPath = "/bin/oksh";
};
}