From 79a6b7912bcd826f465f5cdc325b7fa3d181cbe7 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Mon, 19 May 2025 15:56:17 +0800 Subject: [PATCH] gqlgenc: avoid with lib; --- pkgs/by-name/gq/gqlgenc/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gq/gqlgenc/package.nix b/pkgs/by-name/gq/gqlgenc/package.nix index b38a620da2e4..fdf28ea3d6db 100644 --- a/pkgs/by-name/gq/gqlgenc/package.nix +++ b/pkgs/by-name/gq/gqlgenc/package.nix @@ -37,11 +37,11 @@ buildGoModule (finalAttrs: { # panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted __darwinAllowLocalNetworking = true; - meta = with lib; { + meta = { description = "Go tool for building GraphQL client with gqlgen"; mainProgram = "gqlgenc"; homepage = "https://github.com/Yamashou/gqlgenc"; - license = licenses.mit; - maintainers = with maintainers; [ wattmto ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ wattmto ]; }; })