summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMarius Bergmann <marius@yeai.de>2016-12-01 13:51:47 +0100
committerMarius Bergmann <marius@yeai.de>2016-12-01 14:48:47 +0100
commitd2523a4f3db5fa80f835c10188dd59a25be0c2ee (patch)
tree5ebbf7fb837c7006538d5808f611ba52ec0cdc3c /pkgs/shells
parent130bc32268286748a40c57e65d3d172daf944b4e (diff)
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.
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/rssh/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/rssh/default.nix b/pkgs/shells/rssh/default.nix
index 8aa6c2608fa1..f1fb4d03121d 100644
--- a/pkgs/shells/rssh/default.nix
+++ b/pkgs/shells/rssh/default.nix
@@ -79,4 +79,8 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
maintainers = with maintainers; [ arobyn ];
};
+
+ passthru = {
+ shellPath = "/bin/rssh";
+ };
}