94387dbc25
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
16 lines
363 B
Nix
16 lines
363 B
Nix
{ depot, ... }:
|
|
|
|
depot.buildGo.external {
|
|
path = "github.com/src-d/gcfg";
|
|
|
|
src = depot.third_party.fetchFromGitHub {
|
|
owner = "src-d";
|
|
repo = "gcfg";
|
|
rev = "1ac3a1ac202429a54835fe8408a92880156b489d";
|
|
sha256 = "044j95skmyrwjw5fwjk6ka32rjgsg0ar0mfp9np19sh1acwv4x4r";
|
|
};
|
|
|
|
deps = with depot.third_party; [
|
|
gopkgs."gopkg.in".warnings
|
|
];
|
|
}
|