1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-08 12:19:43 +01:00

go: Fix package example

(cherry picked from commit f7dc354f42)
This commit is contained in:
Roman Volosatovs 2018-09-21 09:42:38 +02:00 committed by Robert Helgesson
parent b19478d820
commit 9d7f7fe3a8
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -27,7 +27,8 @@ in
default = {}; default = {};
example = literalExample '' 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."; description = "Packages to add to GOPATH.";