git: add shellPath passthru

git features a restricted login shell for allowing Git-only SSH access.
This commit is contained in:
V 2021-06-25 02:49:13 +02:00
parent 3b392e8951
commit 56f5cd3343

View File

@ -335,8 +335,11 @@ stdenv.mkDerivation {
stripDebugList = [ "lib" "libexec" "bin" "share/git/contrib/credential/libsecret" ];
passthru.tests = {
buildbot-integration = nixosTests.buildbot;
passthru = {
shellPath = "/bin/git-shell";
tests = {
buildbot-integration = nixosTests.buildbot;
};
};
meta = {