c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
29 lines
803 B
Nix
29 lines
803 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "git-credential-oauth";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hickford";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-dsJ2h0hnqAwqNZv2Wod6XvPR5za8YNYAhtv4pMICfO8=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
vendorHash = "sha256-STwBiqdUwiyhTySPENqfJLUTMwxaq5nYtrAX6+pcKoc=";
|
|
|
|
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 ];
|
|
};
|
|
}
|