88bf43878f
Changes: * ops/nixos/tvl-slapd: The NixOS module for OpenLDAP has removed the ability to configure OpenLDAP directly and now forces users to use some kind of weird Nix->OLC mapping that is mostly undocumented. This moves the config we need to the new format in a way that may or may not work and does the other arbitrary dance steps that someone decided to impose on us. Note that this now throws lots of warnings, but I can't be bothered to fix them. * 3p: Random package removals accomodated * users/glittershark: Pin grfn's kernel to 5.9, because the CK patch is not yet updated for 5.10 * users/glittershark: Update vendor hash for pg-dump-upsert, I suspect this changed because of something in the Go build machinery in nixpkgs. The deleteVendor flag also has no effect anymore and has been removed. * users/glittershark: agda build is broken, commenting out development home-manager environment until it can be fixed * third_party/haskell_overlay: updating random needs upper boundarles of a few dependencies relaxed (curse them) * third_party/gerrit_plugins: for some cursed reason the fixed-output hash of the gerrit owners plugin fetchgit changed, updated. Same for the checks plugin. Change-Id: Ica37995fe8039d3ba80eab643867f98795c56734 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2295 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: glittershark <grfn@gws.fyi> Reviewed-by: tazjin <mail@tazj.in>
38 lines
1.3 KiB
Nix
38 lines
1.3 KiB
Nix
{ depot, pkgs, ... }@args:
|
|
|
|
let
|
|
inherit (import ./builder.nix args) buildGerritBazelPlugin;
|
|
in
|
|
{
|
|
# https://gerrit.googlesource.com/plugins/owners
|
|
owners = buildGerritBazelPlugin rec {
|
|
name = "owners";
|
|
depsOutputHash = "sha256:14h39q37lg9bydjqnhr52jakqvrx97jfqfg03l35qyadw780pny2";
|
|
src = pkgs.fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/owners";
|
|
rev = "17817c9e319073c03513f9d5177b6142b8fd567b";
|
|
sha256 = "sha256:1p089shybp50svckcq51d0hfisjvbggndmvmhh8pvzvi6w8n9d89";
|
|
deepClone = true;
|
|
leaveDotGit = true;
|
|
};
|
|
overlayPluginCmd = ''
|
|
chmod +w "$out" "$out/plugins/external_plugin_deps.bzl"
|
|
cp -R "${src}/owners" "$out/plugins/owners"
|
|
cp "${src}/external_plugin_deps.bzl" "$out/plugins/external_plugin_deps.bzl"
|
|
cp -R "${src}/owners-common" "$out/owners-common"
|
|
'';
|
|
};
|
|
|
|
# https://gerrit.googlesource.com/plugins/checks
|
|
checks = buildGerritBazelPlugin {
|
|
name = "checks";
|
|
depsOutputHash = "sha256:1y1mfnznqrm73vf97ilzn7vjy3fcfqnz9jxgp6h5584k9adnb6zl";
|
|
src = pkgs.fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/checks";
|
|
rev = "ab49a63f5c159bda42d9ad1bdb9286bede6c5de4";
|
|
sha256 = "sha256:1gy67ixjk91mvraww4iw69q7n03w719r3lrzv5xp5glxrzaf1mpf";
|
|
deepClone = true;
|
|
leaveDotGit = true;
|
|
};
|
|
};
|
|
}
|