forked from mirrors/nixpkgs
Merge pull request #151434 from ivankovnatsky/patch-22
This commit is contained in:
commit
b71b9347d7
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "git-credential-1password";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "develerik";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-WMEUa0mSxmeFXQBejwxtlhWuuLKguugavRaBUVpYA3g=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-eUjaSpmQpSOvSBW+7ajXiEDepkyvHsIiEY0RGpfnao0=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A git credential helper for 1Password";
|
||||||
|
homepage = "https://github.com/develerik/git-credential-1password";
|
||||||
|
changelog = "https://github.com/develerik/git-credential-1password/releases/tag/v${version}";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = [ maintainers.ivankovnatsky ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5691,6 +5691,8 @@ with pkgs;
|
||||||
|
|
||||||
git-cola = callPackage ../applications/version-management/git-and-tools/git-cola { };
|
git-cola = callPackage ../applications/version-management/git-and-tools/git-cola { };
|
||||||
|
|
||||||
|
git-credential-1password = callPackage ../applications/version-management/git-and-tools/git-credential-1password { };
|
||||||
|
|
||||||
git-crecord = callPackage ../applications/version-management/git-crecord { };
|
git-crecord = callPackage ../applications/version-management/git-crecord { };
|
||||||
|
|
||||||
git-crypt = callPackage ../applications/version-management/git-and-tools/git-crypt { };
|
git-crypt = callPackage ../applications/version-management/git-and-tools/git-crypt { };
|
||||||
|
|
Loading…
Reference in a new issue