From 57f37743c2e295b0404023587b92c517e5731a30 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 11 Dec 2019 09:54:02 +0000 Subject: fix(buildGo): Ensure 'proto' libraries are overridable --- buildGo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildGo.nix b/buildGo.nix index 366be770a959..b5a6ba2b3a53 100644 --- a/buildGo.nix +++ b/buildGo.nix @@ -73,7 +73,7 @@ let '') // { goDeps = uniqueDeps; }; # Build a Go library out of the specified protobuf definition. - proto = { name, proto, path ? name, extraDeps ? [] }: package { + proto = { name, proto, path ? name, extraDeps ? [] }: (makeOverridable package) { inherit name path; deps = [ protoLibs.goProto ] ++ extraDeps; srcs = lib.singleton (runCommand "goproto-${name}.pb.go" {} '' -- cgit 1.4.1