summary refs log tree commit diff
path: root/pkgs/shells/rssh
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/rssh
parent130bc32268286748a40c57e65d3d172daf944b4e (diff)
downloadnixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar.gz
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar.bz2
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar.lz
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar.xz
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.tar.zst
nixpkgs-d2523a4f3db5fa80f835c10188dd59a25be0c2ee.zip
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/rssh')
-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 8aa6c2608fa..f1fb4d03121 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";
+  };
 }