forked from the-distro/infra
raito
512cfdb43e
https://cl.tvl.fyi/c/depot/+/11965 This breaks it with "ssh_dispatch_run_fatal: Connection to 2a01:4f8:242:5b21:0:feed:edef:beef port 29418: incorrect signature" Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
16 lines
493 B
Nix
16 lines
493 B
Nix
{ buildGerritBazelPlugin, fetchgit }:
|
|
|
|
buildGerritBazelPlugin rec {
|
|
name = "oauth";
|
|
version = "982316";
|
|
src = fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/oauth";
|
|
rev = "98231604d60788bb43490f1a301d792817ac8008";
|
|
hash = "sha256-AuVO1Yys8BYqGHZI/adszCUg0JM2v4Td4fe26LdOPLM=";
|
|
};
|
|
depsHash = "sha256-7SC4NXm4zGeJrYBqtEvcrLmsZmXEX8P21J0kwHBDBZ4=";
|
|
postOverlayPlugin = ''
|
|
cp "${src}/external_plugin_deps.bzl" "$out/plugins/external_plugin_deps.bzl"
|
|
'';
|
|
}
|