about summary refs log tree commit diff
path: root/fun
diff options
context:
space:
mode:
authoredef <edef@edef.eu>2020-08-03T19·28+0000
committeredef <edef@edef.eu>2020-08-04T07·43+0000
commit94387dbc25e350b56f3ba1c63145ff2ed4c3f43b (patch)
treecb7cb9b82a43e7c19fc648a770e92cb87329a96d /fun
parent596e1f7f77e399d1ba32cd00747aa3f94f718a0d (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 'fun')
-rw-r--r--fun/amsterdump/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/fun/amsterdump/default.nix b/fun/amsterdump/default.nix
index 0d98c9a7ab..d64b3a98dc 100644
--- a/fun/amsterdump/default.nix
+++ b/fun/amsterdump/default.nix
@@ -6,7 +6,7 @@ depot.nix.buildGo.program {
     ./main.go
   ];
 
-  deps = with depot.third_party; map (p: p.gopkg) [
+  deps = with depot.third_party; [
     # gopkgs."golang.org".x.oauth2.google
     gopkgs."googlemaps.github.io".maps
   ];