Find a file
2024-07-08 20:50:14 +01:00
.reuse Initial commit 2024-07-08 20:50:14 +01:00
buildBazelPackageNG Initial commit 2024-07-08 20:50:14 +01:00
gerrit Initial commit 2024-07-08 20:50:14 +01:00
LICENSES Initial commit 2024-07-08 20:50:14 +01:00
plugins Initial commit 2024-07-08 20:50:14 +01:00
.gitignore Initial commit 2024-07-08 20:50:14 +01:00
AUTHORS Initial commit 2024-07-08 20:50:14 +01:00
COPYING Initial commit 2024-07-08 20:50:14 +01:00
default.nix Initial commit 2024-07-08 20:50:14 +01:00
flake.lock Initial commit 2024-07-08 20:50:14 +01:00
flake.nix Initial commit 2024-07-08 20:50:14 +01:00
README.md Initial commit 2024-07-08 20:50:14 +01:00
shell.nix Initial commit 2024-07-08 20:50:14 +01:00

nix-gerrit

Lix expressions for building Gerrit Code Review

Note that this is not and is not intended to be a fully vanilla Gerrit builder. This set of Gerrit expressions contains some patches that deviate from upstream. Be warned and review carefully!

Gerrit

Gerrit can be built with

nix-build -A gerrit
# or, if you're feeling flake-y:
nix build

Gerrit Plugins

OAuth

The out-of-tree Gerrit OAuth2 plugin is available.

nix-build -A plugins.oauth
# or
nix build '.#plugins.oauth'

Code-Owners

The out-of-tree Gerrit Code-Owners plugin is available.

nix-build -A plugins.code-owners
# or
nix build '.#plugins.code-owners'

Building everything at once

Everything in the tree can be built at once using the ci expressiong:

nix-build -A ci
# or
nix build '.#ci'