From 9d7f7fe3a8d416fa66b8bceed5e04300062dbbda Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Fri, 21 Sep 2018 09:42:38 +0200 Subject: [PATCH] go: Fix package example (cherry picked from commit f7dc354f427b792f50e2fb647a26a7ca0347f16a) --- modules/programs/go.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/programs/go.nix b/modules/programs/go.nix index d1817ae2..bccf7c9a 100644 --- a/modules/programs/go.nix +++ b/modules/programs/go.nix @@ -27,7 +27,8 @@ in default = {}; example = literalExample '' { - "golang.org/x/time/rate" = builtins.fetchGit "https://go.googlesource.com/text"; + "golang.org/x/text" = builtins.fetchGit "https://go.googlesource.com/text"; + "golang.org/x/time" = builtins.fetchGit "https://go.googlesource.com/time"; } ''; description = "Packages to add to GOPATH.";