From 378fe3e07f0321842620ee8741120df41b28c013 Mon Sep 17 00:00:00 2001 From: Julien Moutinho Date: Sun, 19 Sep 2021 16:51:14 +0200 Subject: [PATCH] go: fix buildGoModule by passing patchFlags to go-modules too --- pkgs/development/go-modules/generic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 3b645f9ce8b9..f00ca1984ec8 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -71,6 +71,7 @@ let inherit (go) GOOS GOARCH; patches = args.patches or []; + patchFlags = args.patchFlags or []; preBuild = args.preBuild or ""; sourceRoot = args.sourceRoot or "";