1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-18 14:15:08 +01:00

go: Fix package example

This commit is contained in:
Roman Volosatovs 2018-09-21 09:42:38 +02:00
parent 4d870f665b
commit f7dc354f42
No known key found for this signature in database
GPG key ID: 3AC661943D80C89E

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.";