nixpkgs/pkgs/by-name/gq/gqlgenc/package.nix
Wataru Matsuoka 7ce8314339
maintainers: rename milran to wattmto (#355397)
* maintainers: Update email and rename

* gqlgenc: rename maintainter

* onioncircuits: rename maintainer

* fcitx5-skk: rename maintainer
2024-11-13 16:31:44 +08:00

26 lines
642 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "gqlgenc";
version = "0.25.3";
src = fetchFromGitHub {
owner = "yamashou";
repo = "gqlgenc";
rev = "v${version}";
sha256 = "sha256-sIXPd/+BVaywAAt2myNOBaAjy/eTY6C8TdSuOoikr0E=";
};
excludedPackages = [ "example" ];
vendorHash = "sha256-YGFMQrxghJIgmiwEPfEqaACH7OETVkD8O7oUhm9foJo=";
meta = with lib; {
description = "Go tool for building GraphQL client with gqlgen";
mainProgram = "gqlgenc";
homepage = "https://github.com/Yamashou/gqlgenc";
license = licenses.mit;
maintainers = with maintainers; [ wattmto ];
};
}