fe225d48a1
Brings us back to a stable version of Gerrit instead of a random commit. Note that Gerrit 3.4.1 is out, but due to a bug it can not be built publicly because it accidentally points at a private submodule (this is being fixed upstream). Change-Id: I0376c63a649498cef999dfa99bfccba511f2c8da Reviewed-on: https://cl.tvl.fyi/c/depot/+/3444 Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
26 lines
885 B
Nix
26 lines
885 B
Nix
{ depot, pkgs, ... }@args:
|
|
|
|
let
|
|
inherit (import ../builder.nix args) buildGerritBazelPlugin;
|
|
in buildGerritBazelPlugin rec {
|
|
name = "oauth";
|
|
depsOutputHash = "sha256:0ww88msym6zr5z86k5az1kmw3hv8d9giniwkii4lwnzf3kc5qnrx";
|
|
src = pkgs.fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/oauth";
|
|
rev = "4aa7322db5ec221b2419e12a9ec7af5b8c66659c";
|
|
sha256 = "1szra3pjl0axf4a7k96flpk7rhfvp37rdxay4gbglh939gzbba88";
|
|
};
|
|
overlayPluginCmd = ''
|
|
chmod +w "$out" "$out/plugins/external_plugin_deps.bzl"
|
|
cp -R "${src}" "$out/plugins/${name}"
|
|
cp "${src}/external_plugin_deps.bzl" "$out/plugins/external_plugin_deps.bzl"
|
|
'';
|
|
|
|
# The code in the OAuth repo expects CAS to return oauth2 access tokens as urlencoded.
|
|
# Our version of CAS returns them as JSON instead.
|
|
postPatch = ''
|
|
pushd plugins/oauth
|
|
patch -p1 <${./cas-6x.patch}
|
|
popd
|
|
'';
|
|
}
|