Loading nixos/release-small.nix +2 −0 Original line number Diff line number Diff line Loading @@ -78,6 +78,7 @@ in rec { nginx nodejs openssh opensshTest php postgresql python Loading Loading @@ -139,6 +140,7 @@ in rec { "nixos.tests.simple" "nixpkgs.jdk" "nixpkgs.tests-stdenv-gcc-stageCompare" "nixpkgs.opensshTest" ]) ]; }; Loading pkgs/tools/networking/openssh/common.nix +8 −4 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ , isNixos ? stdenv.hostPlatform.isLinux }: stdenv.mkDerivation { stdenv.mkDerivation (finalAttrs: { inherit pname version src; patches = [ Loading Loading @@ -111,7 +111,7 @@ stdenv.mkDerivation { hardeningEnable = [ "pie" ]; doCheck = true; doCheck = false; enableParallelChecking = false; nativeCheckInputs = [ openssl ] ++ lib.optional (!stdenv.isDarwin) hostname; preCheck = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) '' Loading Loading @@ -181,7 +181,11 @@ stdenv.mkDerivation { inherit withKerberos; tests = { borgbackup-integration = nixosTests.borgbackup; openssh = nixosTests.openssh; nixosTest = nixosTests.openssh; openssh = finalAttrs.finalPackage.overrideAttrs (previousAttrs: { pname = previousAttrs.pname + "-test"; doCheck = true; }); }; }; Loading @@ -194,4 +198,4 @@ stdenv.mkDerivation { maintainers = (extraMeta.maintainers or []) ++ (with maintainers; [ eelco aneeshusa ]); mainProgram = "ssh"; } // extraMeta; } }) pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11235,6 +11235,8 @@ with pkgs; etcDir = "/etc/ssh"; }; opensshTest = openssh.tests.openssh; opensshWithKerberos = openssh.override { withKerberos = true; }; Loading
nixos/release-small.nix +2 −0 Original line number Diff line number Diff line Loading @@ -78,6 +78,7 @@ in rec { nginx nodejs openssh opensshTest php postgresql python Loading Loading @@ -139,6 +140,7 @@ in rec { "nixos.tests.simple" "nixpkgs.jdk" "nixpkgs.tests-stdenv-gcc-stageCompare" "nixpkgs.opensshTest" ]) ]; }; Loading
pkgs/tools/networking/openssh/common.nix +8 −4 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ , isNixos ? stdenv.hostPlatform.isLinux }: stdenv.mkDerivation { stdenv.mkDerivation (finalAttrs: { inherit pname version src; patches = [ Loading Loading @@ -111,7 +111,7 @@ stdenv.mkDerivation { hardeningEnable = [ "pie" ]; doCheck = true; doCheck = false; enableParallelChecking = false; nativeCheckInputs = [ openssl ] ++ lib.optional (!stdenv.isDarwin) hostname; preCheck = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) '' Loading Loading @@ -181,7 +181,11 @@ stdenv.mkDerivation { inherit withKerberos; tests = { borgbackup-integration = nixosTests.borgbackup; openssh = nixosTests.openssh; nixosTest = nixosTests.openssh; openssh = finalAttrs.finalPackage.overrideAttrs (previousAttrs: { pname = previousAttrs.pname + "-test"; doCheck = true; }); }; }; Loading @@ -194,4 +198,4 @@ stdenv.mkDerivation { maintainers = (extraMeta.maintainers or []) ++ (with maintainers; [ eelco aneeshusa ]); mainProgram = "ssh"; } // extraMeta; } })
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11235,6 +11235,8 @@ with pkgs; etcDir = "/etc/ssh"; }; opensshTest = openssh.tests.openssh; opensshWithKerberos = openssh.override { withKerberos = true; };