mosh: minor formatting, add SuperSandor2000 as maintainer

+6 -5
+6 -5
pkgs/tools/networking/mosh/default.nix
··· 30 30 # Fix build with bash-completion 2.10 31 31 ./bash_completion_datadir.patch 32 32 ]; 33 + 33 34 postPatch = '' 34 35 # Fix build with Xcode 12.5 toolchain/case-insensitive filesystems 35 36 # Backport of https://github.com/mobile-shell/mosh/commit/12199114fe4234f791ef4c306163901643b40538; ··· 40 41 }} 41 42 42 43 substituteInPlace scripts/mosh.pl \ 43 - --subst-var-by ssh "${openssh}/bin/ssh" 44 - substituteInPlace scripts/mosh.pl \ 45 - --subst-var-by mosh-client "$out/bin/mosh-client" 44 + --subst-var-by ssh "${openssh}/bin/ssh" \ 45 + --subst-var-by mosh-client "$out/bin/mosh-client" 46 46 ''; 47 47 48 - configureFlags = [ "--enable-completion" ] ++ lib.optional withUtempter "--with-utempter"; 48 + configureFlags = [ "--enable-completion" ] 49 + ++ lib.optional withUtempter "--with-utempter"; 49 50 50 51 postInstall = '' 51 52 wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB ··· 65 66 especially over Wi-Fi, cellular, and long-distance links. 66 67 ''; 67 68 license = licenses.gpl3Plus; 68 - maintainers = with maintainers; [ viric ]; 69 + maintainers = with maintainers; [ viric SuperSandro2000 ]; 69 70 platforms = platforms.unix; 70 71 }; 71 72 }