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

git-credential-oauth: install manpage
This commit is contained in:
tomberek 2024-04-09 21:36:13 -04:00 committed by GitHub
commit d2fc79dbeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ 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";