rssh: Make rssh a valid shell

The rssh package did not have the 'shellPath' attribute, so it could not
be used as the default shell for a nixos user. I fixed this by adding
the attribute.
This commit is contained in:
Marius Bergmann 2016-12-01 13:51:47 +01:00
parent 130bc32268
commit d2523a4f3d

View File

@ -79,4 +79,8 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
maintainers = with maintainers; [ arobyn ];
};
passthru = {
shellPath = "/bin/rssh";
};
}