openssh: Add myself as maintainer

This commit is contained in:
Janne Heß 2021-09-30 21:12:47 +02:00
parent fae34f538f
commit 1b41f51b96
No known key found for this signature in database
GPG Key ID: 69165158F05265DF
2 changed files with 3 additions and 2 deletions

View File

@ -122,7 +122,7 @@ stdenv.mkDerivation rec {
changelog = "https://www.openssh.com/releasenotes.html";
license = licenses.bsd2;
platforms = platforms.unix ++ platforms.windows;
maintainers = with maintainers; [ eelco aneeshusa ];
maintainers = (extraMeta.maintainers or []) ++ (with maintainers; [ eelco aneeshusa ]);
mainProgram = "ssh";
} // extraMeta;
}

View File

@ -1,4 +1,4 @@
{ callPackage, fetchurl, fetchpatch, fetchFromGitHub, autoreconfHook }:
{ callPackage, lib, fetchurl, fetchpatch, fetchFromGitHub, autoreconfHook }:
let
common = opts: callPackage (import ./common.nix opts) { };
in
@ -14,6 +14,7 @@ in
};
extraPatches = [ ./ssh-keysign-8.5.patch ];
extraMeta.maintainers = with lib.maintainers; [ das_j ];
};
openssh_hpn = common rec {