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/src-d | |
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/src-d')
-rw-r--r-- | third_party/gopkgs/github.com/src-d/gcfg/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/gopkgs/github.com/src-d/gcfg/default.nix b/third_party/gopkgs/github.com/src-d/gcfg/default.nix index 2906063428de..ed51f454715b 100644 --- a/third_party/gopkgs/github.com/src-d/gcfg/default.nix +++ b/third_party/gopkgs/github.com/src-d/gcfg/default.nix @@ -10,7 +10,7 @@ depot.buildGo.external { sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r"; }; - deps = with depot.third_party; map (p: p.gopkg) [ + deps = with depot.third_party; [ gopkgs."gopkg.in".warnings ]; } |