tvl-depot/third_party/gopkgs/github.com/xanzy/ssh-agent/default.nix
edef 94387dbc25 chore: simplify buildGo expressions
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
2020-08-04 07:43:25 +00:00

16 lines
385 B
Nix

{ depot, ... }:
depot.buildGo.external {
path = "github.com/xanzy/ssh-agent";
src = depot.third_party.fetchFromGitHub {
owner = "xanzy";
repo = "ssh-agent";
rev = "6a3e2ff9e7c564f36873c2e36413f634534f1c44";
sha256 = "1chjlnv5d6svpymxgsr62d992m2xi6jb5lybjc5zn1h3hv1m01av";
};
deps = with depot.third_party; [
gopkgs."golang.org".x.crypto.ssh.agent
];
}