diff options
Diffstat (limited to 'third_party/gopkgs/golang.org/x/text/default.nix')
-rw-r--r-- | third_party/gopkgs/golang.org/x/text/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/gopkgs/golang.org/x/text/default.nix b/third_party/gopkgs/golang.org/x/text/default.nix new file mode 100644 index 000000000000..f6107e63878b --- /dev/null +++ b/third_party/gopkgs/golang.org/x/text/default.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: + +pkgs.buildGo.external { + path = "golang.org/x/text"; + src = builtins.fetchGit { + url = "https://go.googlesource.com/text"; + rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475"; + }; + + deps = with pkgs.third_party; [ + ]; +} |