forked from mirrors/nixpkgs
gqlgenc: init at 0.11.3
Signed-off-by: milran <milranmike@protonmail.com>
This commit is contained in:
parent
04a5d95dbf
commit
42cda97c50
24
pkgs/development/tools/gqlgenc/default.nix
Normal file
24
pkgs/development/tools/gqlgenc/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -26283,6 +26283,8 @@ with pkgs;
|
|||
|
||||
gotestsum = callPackage ../development/tools/gotestsum { };
|
||||
|
||||
gqlgenc = callPackage ../development/tools/gqlgenc { };
|
||||
|
||||
impl = callPackage ../development/tools/impl { };
|
||||
|
||||
moq = callPackage ../development/tools/moq { };
|
||||
|
|
Loading…
Reference in a new issue