c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
30 lines
845 B
Nix
30 lines
845 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "git-credential-oauth";
|
|
version = "0.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hickford";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-bqyoAAqli0L6Kf+W1sTh2vmmfaIj2OdpQyvQZnYOWWA=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
vendorHash = "sha256-cCqbEv4kBnF6FWvfaXCOxadPVXR/AxXS3nXHf6WmsSs=";
|
|
|
|
meta = {
|
|
description = "Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth";
|
|
homepage = "https://github.com/hickford/git-credential-oauth";
|
|
changelog = "https://github.com/hickford/git-credential-oauth/releases/tag/${src.rev}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ shyim ];
|
|
mainProgram = "git-credential-oauth";
|
|
};
|
|
}
|