diff options
author | edef <edef@edef.eu> | 2020-08-03T19·28+0000 |
---|---|---|
committer | edef <edef@edef.eu> | 2020-08-04T07·43+0000 |
commit | 94387dbc25e350b56f3ba1c63145ff2ed4c3f43b (patch) | |
tree | cb7cb9b82a43e7c19fc648a770e92cb87329a96d /third_party/gopkgs/github.com/jbenet/go-context/default.nix | |
parent | 596e1f7f77e399d1ba32cd00747aa3f94f718a0d (diff) |
chore: simplify buildGo expressions r/1580
This removes redundant `map (p: p.gopkg)` expressions. Change-Id: If25d603c27d63ae011f396caf5d26cdfdb8c28d5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1625 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/gopkgs/github.com/jbenet/go-context/default.nix')
-rw-r--r-- | third_party/gopkgs/github.com/jbenet/go-context/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/gopkgs/github.com/jbenet/go-context/default.nix b/third_party/gopkgs/github.com/jbenet/go-context/default.nix index 4092f8ecff24..8b3fdc891c7f 100644 --- a/third_party/gopkgs/github.com/jbenet/go-context/default.nix +++ b/third_party/gopkgs/github.com/jbenet/go-context/default.nix @@ -10,7 +10,7 @@ depot.buildGo.external { sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl"; }; - deps = with depot.third_party; map (p: p.gopkg) [ + deps = with depot.third_party; [ gopkgs."golang.org".x.net.context ]; } |