Unverified Commit c541710b authored by sephalon's avatar sephalon Committed by GitHub
Browse files

Apply suggestions from code review



Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent fdee07eb
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -3,12 +3,9 @@
  callPackage,
}:

let
  script = "git-credential-aol";
in
callPackage ../package.nix {
  pname = script;
  scripts = [ script ];
  pname = "git-credential-aol";
  scripts = [ "git-credential-aol" ];
  description = "Git credential helper for AOL accounts";
  license = lib.licenses.asl20;
}
+2 −5
Original line number Diff line number Diff line
@@ -3,12 +3,9 @@
  callPackage,
}:

let
  script = "git-credential-gmail";
in
callPackage ../package.nix {
  pname = script;
  scripts = [ script ];
  pname = "git-credential-gmail";
  scripts = [ "git-credential-gmail" ];
  description = "Git credential helper for Gmail accounts";
  license = lib.licenses.asl20;
}
+2 −5
Original line number Diff line number Diff line
@@ -3,12 +3,9 @@
  callPackage,
}:

let
  script = "git-credential-outlook";
in
callPackage ../package.nix {
  pname = script;
  scripts = [ script ];
  pname = "git-credential-outlook";
  scripts = [ "git-credential-outlook" ];
  description = "Git credential helper for Microsoft Outlook accounts";
  license = lib.licenses.asl20;
}
+2 −5
Original line number Diff line number Diff line
@@ -3,12 +3,9 @@
  callPackage,
}:

let
  script = "git-credential-yahoo";
in
callPackage ../package.nix {
  pname = script;
  scripts = [ script ];
  pname = "git-credential-yahoo";
  scripts = [ "git-credential-yahoo" ];
  description = "Git credential helper for Yahoo accounts";
  license = lib.licenses.asl20;
}
+2 −5
Original line number Diff line number Diff line
@@ -3,12 +3,9 @@
  callPackage,
}:

let
  script = "git-msgraph";
in
callPackage ../package.nix {
  pname = script;
  scripts = [ script ];
  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