mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
7ce8314339
* maintainers: Update email and rename * gqlgenc: rename maintainter * onioncircuits: rename maintainer * fcitx5-skk: rename maintainer
26 lines
642 B
Nix
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 ];
|
|
};
|
|
}
|