tvl-depot/ops/gerrit-tvl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
709 B
Nix
Raw Normal View History

{ depot, pkgs, lib, ... }:
let
classPath = lib.concatStringsSep ":" [
"${depot.third_party.gerrit}/share/api/extension-api_deploy.jar"
];
in
pkgs.stdenvNoCC.mkDerivation rec {
name = "${pname}-${version}.jar";
pname = "gerrit-tvl";
version = "0.0.1";
src = ./.;
nativeBuildInputs = with pkgs; [
jdk
];
buildPhase = ''
mkdir $NIX_BUILD_TOP/build
# Build Java components.
export JAVAC="javac -cp ${classPath} -d $NIX_BUILD_TOP/build --release 11"
$JAVAC ./HttpModule.java
# Install static files.
cp -R static $NIX_BUILD_TOP/build/static
'';
installPhase = ''
jar --create --file $out --manifest $src/MANIFEST.MF -C $NIX_BUILD_TOP/build .
'';
}