nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 24 lines 612 B view raw
1{ buildGoModule, fetchFromGitHub, lib }: 2 3buildGoModule rec { 4 pname = "gqlgenc"; 5 version = "0.11.3"; 6 7 src = fetchFromGitHub { 8 owner = "yamashou"; 9 repo = "gqlgenc"; 10 rev = "v${version}"; 11 sha256 = "sha256-yMM6LR5Zviwr1OduSUxsSzdzrb+Lv5ILkVjXWD0b0FU="; 12 }; 13 14 excludedPackages = [ "example" ]; 15 16 vendorHash = "sha256-d95w9cApLyYu+OOP4UM5/+4DDU2LqyHU8E3wSTW8c7Q="; 17 18 meta = with lib; { 19 description = "Go tool for building GraphQL client with gqlgen"; 20 homepage = "https://github.com/Yamashou/gqlgenc"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ milran ]; 23 }; 24}