2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2019-12-19 17:25:47 +01:00
|
|
|
|
2021-03-24 00:19:17 +01:00
|
|
|
depot.nix.buildGo.external {
|
2019-12-19 17:25:47 +01:00
|
|
|
path = "github.com/xanzy/ssh-agent";
|
|
|
|
|
2021-04-10 02:13:18 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
2019-12-19 17:25:47 +01:00
|
|
|
owner = "xanzy";
|
|
|
|
repo = "ssh-agent";
|
|
|
|
rev = "6a3e2ff9e7c564f36873c2e36413f634534f1c44";
|
|
|
|
sha256 = "1chjlnv5d6svpymxgsr62d992m2xi6jb5lybjc5zn1h3hv1m01av";
|
|
|
|
};
|
|
|
|
|
2020-08-03 21:28:16 +02:00
|
|
|
deps = with depot.third_party; [
|
2019-12-19 17:25:47 +01:00
|
|
|
gopkgs."golang.org".x.crypto.ssh.agent
|
|
|
|
];
|
|
|
|
}
|