12 lines
235 B
Nix
12 lines
235 B
Nix
{
|
|
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;
|
|
}
|