Unverified Commit d2fc79db authored by tomberek's avatar tomberek Committed by GitHub
Browse files

Merge pull request #302922 from tomodachi94/update/git-credential-oauth/install-manpage

git-credential-oauth: install manpage
parents af1145bc f5e125a1
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:

buildGoModule rec {
  pname = "git-credential-oauth";
@@ -11,6 +11,8 @@ buildGoModule rec {
    hash = "sha256-bqyoAAqli0L6Kf+W1sTh2vmmfaIj2OdpQyvQZnYOWWA=";
  };

  nativeBuildInputs = [ installShellFiles ];

  ldflags = [
    "-s"
    "-w"
@@ -19,6 +21,10 @@ buildGoModule rec {

  vendorHash = "sha256-cCqbEv4kBnF6FWvfaXCOxadPVXR/AxXS3nXHf6WmsSs=";

  postInstall = ''
    installManPage $src/git-credential-oauth.1
  '';

  meta = {
    description = "Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth";
    homepage = "https://github.com/hickford/git-credential-oauth";