Compare commits

..

No commits in common. "eb589c659e494e5fcb5b47b75be9984ae87a500a" and "6591b76532e8fafc7b11209f2d8a75fb882f3b8c" have entirely different histories.

2 changed files with 2 additions and 15 deletions

View file

@ -82,9 +82,7 @@ let
bazelPhase = "build";
inherit deps;
passthru = (base.passthru or {}) // {
inherit shell;
};
passthru.shell = shell;
nativeBuildInputs = (base.nativeBuildInputs or []) ++ [
coreutils

View file

@ -14,20 +14,9 @@
in {
packages = forAllSystems (system: let
pkgSet = import ./default.nix { pkgs = nixpkgs.legacyPackages."${system}"; };
in {
default = pkgSet.gerrit;
inherit (pkgSet) gerrit;
inherit (pkgSet.plugins) oauth code-owners;
});
in pkgSet // { default = pkgSet.gerrit; });
devShells = forAllSystems (system: {
default = import ./shell.nix { pkgs = nixpkgs.legacyPackages."${system}"; };
});
overlays.default = final: prev: {
gerritPkgs = import ./default.nix { pkgs = final; };
gerrit = final.gerritPkgs.gerrit;
gerritPlugins = final.gerritPkgs.plugins;
};
};
}