Unverified Commit f73a52d6 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

git-credential-email: init at 5.5.2 (#457641)

parents 352b548c c541710b
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
{
  lib,
  callPackage,
}:

callPackage ../package.nix {
  pname = "git-credential-aol";
  scripts = [ "git-credential-aol" ];
  description = "Git credential helper for AOL accounts";
  license = lib.licenses.asl20;
}
+11 −0
Original line number Diff line number Diff line
{
  lib,
  callPackage,
}:

callPackage ../package.nix {
  pname = "git-credential-gmail";
  scripts = [ "git-credential-gmail" ];
  description = "Git credential helper for Gmail accounts";
  license = lib.licenses.asl20;
}
+11 −0
Original line number Diff line number Diff line
{
  lib,
  callPackage,
}:

callPackage ../package.nix {
  pname = "git-credential-outlook";
  scripts = [ "git-credential-outlook" ];
  description = "Git credential helper for Microsoft Outlook accounts";
  license = lib.licenses.asl20;
}
+11 −0
Original line number Diff line number Diff line
{
  lib,
  callPackage,
}:

callPackage ../package.nix {
  pname = "git-credential-yahoo";
  scripts = [ "git-credential-yahoo" ];
  description = "Git credential helper for Yahoo accounts";
  license = lib.licenses.asl20;
}
+11 −0
Original line number Diff line number Diff line
{
  lib,
  callPackage,
}:

callPackage ../package.nix {
  pname = "git-msgraph";
  scripts = [ "git-msgraph" ];
  description = "Git helper to use Microsoft Graph API instead of SMTP to send emails";
  license = lib.licenses.asl20;
}
Loading