mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
openssh: Add myself as maintainer
This commit is contained in:
parent
fae34f538f
commit
1b41f51b96
@ -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;
|
||||
}
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user