gerrit 3.7.2 -> 3.8.0 https://repology.org/project/gerrit/versions attrpath: gerrit Checking auto update branch... No auto update branch exists Old version 3.7.2" not present in master derivation file with contents: { lib, stdenv, fetchurl }: stdenv.mkDerivation rec { pname = "gerrit"; version = "3.8.0"; src = fetchurl { url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; sha256 = "sha256-wial+K5eUZSJ+asFBLrFoJQOLWLHkl5ot4b4CIsg7Tc="; }; buildCommand = '' mkdir -p "$out"/webapps/ ln -s ${src} "$out"/webapps/gerrit-${version}.war ''; passthru = { # A list of plugins that are part of the gerrit.war file. # Use `java -jar gerrit.war ls | grep plugins/` to generate that list. plugins = [ "codemirror-editor" "commit-message-length-validator" "delete-project" "download-commands" "gitiles" "hooks" "plugin-manager" "replication" "reviewnotes" "singleusergroup" "webhooks" ]; }; meta = with lib; { homepage = "https://www.gerritcodereview.com/index.md"; license = licenses.asl20; description = "A web based code review and repository management for the git version control system"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; maintainers = with maintainers; [ flokli jammerful zimbatm ]; platforms = platforms.unix; }; }