Unverified Commit 30fe1f1c authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #213764 from milran/init-gqlgenc

gqlgenc: init at 0.11.3
parents 9e0b75c2 42cda97c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -9848,6 +9848,12 @@
    githubId = 5378535;
    name = "Milo Gertjejansen";
  };
  milran = {
    email = "milranmike@protonmail.com";
    github = "milran";
    githubId = 93639059;
    name = "Milran Mike";
  };
  mimame = {
    email = "miguel.madrid.mencia@gmail.com";
    github = "mimame";
+24 −0
Original line number Diff line number Diff line
{ buildGoModule, fetchFromGitHub, lib }:

buildGoModule rec {
  pname = "gqlgenc";
  version = "0.11.3";

  src = fetchFromGitHub {
    owner = "yamashou";
    repo = "gqlgenc";
    rev = "v${version}";
    sha256 = "sha256-yMM6LR5Zviwr1OduSUxsSzdzrb+Lv5ILkVjXWD0b0FU=";
  };

  excludedPackages = [ "example" ];

  vendorHash = "sha256-d95w9cApLyYu+OOP4UM5/+4DDU2LqyHU8E3wSTW8c7Q=";

  meta = with lib; {
    description = "Go tool for building GraphQL client with gqlgen";
    homepage = "https://github.com/Yamashou/gqlgenc";
    license = licenses.mit;
    maintainers = with maintainers; [ milran ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -26622,6 +26622,8 @@ with pkgs;
  gotestsum = callPackage ../development/tools/gotestsum { };
  gqlgenc = callPackage ../development/tools/gqlgenc { };
  impl = callPackage ../development/tools/impl { };
  moq = callPackage ../development/tools/moq { };